File "notification-install-user-feedback.php"

Full Path: /home/tekvhqgl/public_html/wp-content/plugins/google-analytics-for-wordpress/includes/admin/notifications/notification-install-user-feedback.php
File size: 2.2 KB
MIME-type: text/x-php
Charset: utf-8

<?php

/**
 * Add userfeedback install and activate notifications.
 * Recurrence: 30 Days
 *
 * @since 8.14
 */
final class MonsterInsights_Notification_Install_User_Feedback extends MonsterInsights_Notification_Event {

	public $notification_id = 'monsterinsights_notification_install_user_feedback';
	public $notification_interval = 30; // in days
	public $notification_type = array( 'basic', 'lite', 'master', 'plus', 'pro' );
	public $notification_icon = 'lightning';
	public $notification_category = 'insight';
	public $notification_priority = 1;

	/**
	 * Build Notification
	 *
	 * @return array $notification notification is ready to add
	 *
	 * @since 8.14
	 */
	public function prepare_notification_data( $notification ) {

		$is_em = class_exists( 'ExactMetrics' ) || class_exists( 'ExactMetrics_Lite' );

		$uf_plugin_active = class_exists( 'UserFeedback_Base' );

		if( ! $uf_plugin_active ) {

			// Translators: user feedback notification title
			$notification['title'] = sprintf( __( 'What Are Your Users Really Thinking?', 'google-analytics-for-wordpress' ) );
			
			// Translators: user feedback notification content
			$notification['content'] = sprintf( __( 'MonsterInsights tells you WHAT your website visitors are doing on your website, but our latest plugin, UserFeedback, tells you WHY. Use its short surveys to make more money, increase engagement, and grow your business faster with candid customer feedback.', 'google-analytics-for-wordpress' ) );

			if ( $is_em ) {
				// Translators: user feedback notification content
				$notification['content'] = sprintf( __( 'ExactMetrics tells you WHAT your website visitors are doing on your website, but UserFeedback tells you WHY. Use its short surveys to make more money, increase engagement, and grow your business faster with candid customer feedback.', 'google-analytics-for-wordpress' ) );
			}

			$notification['btns'] = array(
				"cta_install_user_feedback" => array(
					'url'  => $this->get_view_url( false, 'userfeedback_onboarding' ),
					'text' => __( 'Install & Activate', 'google-analytics-for-wordpress' ),
				),
			);

			return $notification;
		}

		return false;
	}

}

// initialize the class
new MonsterInsights_Notification_Install_User_Feedback();