46 lines
1.4 KiB
PHP
46 lines
1.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Add notification after 1 week of lite version installation
|
|
* Recurrence: 40 Days
|
|
*
|
|
* @since 7.12.3
|
|
*/
|
|
final class MonsterInsights_Notification_Install_OptinMonster extends MonsterInsights_Notification_Event {
|
|
|
|
public $notification_id = 'monsterinsights_notification_install_optinmonster';
|
|
public $notification_interval = 30; // in days
|
|
public $notification_type = array( 'basic', 'lite', 'master', 'plus', 'pro' );
|
|
public $notification_icon = 'star';
|
|
public $notification_category = 'insight';
|
|
public $notification_priority = 3;
|
|
|
|
/**
|
|
* Build Notification
|
|
*
|
|
* @return array $notification notification is ready to add
|
|
*
|
|
* @since 7.12.3
|
|
*/
|
|
public function prepare_notification_data( $notification ) {
|
|
|
|
$report = $this->get_report();
|
|
|
|
$sessions = isset( $report['data']['infobox']['sessions']['value'] ) ? $report['data']['infobox']['sessions']['value'] : 0;
|
|
$om_plugin_active = class_exists( 'OMAPI' );
|
|
|
|
if ( $sessions > 1000 && ! $om_plugin_active ) {
|
|
$notification['title'] = __( 'Increase Engagement on Your Site', 'google-analytics-for-wordpress' );
|
|
$notification['content'] = __( 'Get more leads and subscribers from your traffic by creating engaging campaigns with OptinMonster.', 'google-analytics-for-wordpress' );
|
|
|
|
return $notification;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
}
|
|
|
|
// initialize the class
|
|
new MonsterInsights_Notification_Install_OptinMonster();
|