= 0 && empty($backuply['bcloud_key']) && $trial_time < (time() - (86400)) && isset($_GET['page']) && $_GET['page'] === 'backuply'){ $showing_promo = true; add_action('admin_notices', 'backuply_free_trial_promo'); } // === Trial Promo Ends here === // // === Last Backup Notice Start === // // Backup notice for user to backup the if its been a week user took a backup $last_backup = get_option('backuply_last_backup'); $backup_nag = get_option('backuply_backup_nag'); // We want to show it one day after install. if(empty($backup_nag)){ update_option('backuply_backup_nag', time() - 518400, false); } if((time() - $last_backup) >= 604800 && (time() - $backup_nag) >= 604800){ add_action('admin_notices', 'backuply_backup_nag'); } // === Last Backup Notice End === // // === License Notice Start === // // Are we to disable the license notice for 2 months. if(isset($_REQUEST['backuply_license_notice']) && (int)$_REQUEST['backuply_license_notice'] == 0 ){ if(!wp_verify_nonce(backuply_optreq('security'), 'backuply_promo_nonce')) { die('Security Check Failed'); } update_option('backuply_license_notice', (0 - time()), false); die('DONE'); } $backuply_license_notice = get_option('backuply_license_notice', 0); if(empty($backuply_license_notice)){ $backuply_license_notice = time(); update_option('backuply_license_notice', $backuply_license_notice); } // Here we are making sure that we have license and Cloud trial has ended and if dismissed it does not shows for next 2 months. if(!empty($backuply['license']) && !empty($backuply['license']['expires']) && isset($_GET['page']) && strpos($_GET['page'], 'backuply') !== FALSE && get_option('bcloud_trial_time', 0) <= 0 && ($backuply_license_notice > 0 || (abs($backuply_license_notice) + MONTH_IN_SECONDS * 2) < time())){ $current_timestamp = time(); $expiration_timestamp = strtotime($backuply['license']['expires']); $timediff = $expiration_timestamp - $current_timestamp; if($timediff <= WEEK_IN_SECONDS){ add_action('admin_notices', 'backuply_license_renew'); } } // === License Notice End === // // === Plugin Update Notice === // $plugin_update_notice = get_option('softaculous_plugin_update_notice'); $available_update_list = get_site_transient('update_plugins'); if( !empty($available_update_list) && !empty($available_update_list->response) && !empty($available_update_list->response['backuply/backuply.php']) && (empty($plugin_update_notice) || empty($plugin_update_notice['backuply/backuply.php']) || (!empty($plugin_update_notice['backuply/backuply.php']) && version_compare($plugin_update_notice['backuply/backuply.php'], $available_update_list->response['backuply/backuply.php']->new_version, '<'))) ){ add_action('admin_notices', 'backuply_update_notice_handler'); add_filter('softaculous_plugin_update_notice', 'backuply_update_notice_filter'); } // === Plugin Update Notice === // // Schedule for backup folder tmp cleanup. if(!wp_next_scheduled('backuply_clean_tmp')){ wp_schedule_event(time(), 'backuply_daily', 'backuply_clean_tmp'); } } // Are we pro ? if(!defined('BACKUPLY_PRO') && current_user_can('install_plugins')){ // The holiday promo time $holiday_time = get_option('backuply_hide_holiday'); if(empty($holiday_time) || (time() - abs($holiday_time)) > 172800){ $holiday_time = time(); update_option('backuply_hide_holiday', $holiday_time, false); } $time = date('nj'); $days = array(1225, 1224, 11); if(!empty($holiday_time) && $holiday_time > 0 && isset($_GET['page']) && $_GET['page'] === 'backuply' && in_array($time, $days) && empty($showing_promo)){ $showing_promo = true; add_action('admin_notices', 'backuply_holiday_promo'); } // Are we to disable the holiday promo for 48 hours if(isset($_REQUEST['backuply_holiday_promo']) && (int)$_REQUEST['backuply_holiday_promo'] == 0 ){ if(!wp_verify_nonce(backuply_optreq('security'), 'backuply_promo_nonce')) { die('Security Check Failed'); } update_option('backuply_hide_holiday', (0 - time()), false); die('DONE'); } // The promo time $promo_time = get_option('backuply_promo_time'); if(empty($promo_time)){ $promo_time = time(); update_option('backuply_promo_time', $promo_time, false); } // Are we to show the backuply promo, and it will show up after 7 days of install. if(empty($showing_promo) && !empty($promo_time) && $promo_time > 0 && $promo_time < (time() - (7 * 86400))){ $showing_promo = true; add_action('admin_notices', 'backuply_promo'); } // Are we to disable the promo if(isset($_REQUEST['backuply_promo']) && (int)$_REQUEST['backuply_promo'] == 0 ){ if(!wp_verify_nonce(backuply_optreq('security'), 'backuply_promo_nonce')) { die('Security Check Failed'); } update_option('backuply_promo_time', (0 - time()), false); die('DONE'); } // The offer time $offer_time = get_option('backuply_offer_time', ''); if(empty($offer_time)){ $offer_time = time(); update_option('backuply_offer_time', $offer_time, false); } // Are we to show the backuply offer, and it will show up after 7 days of install. if(empty($showing_promo) && !empty($offer_time) && ($offer_time > 0 || abs($offer_time + time()) > 15780000) && $offer_time < time() - (7 * 86400) && !empty($_GET['page']) && strpos(backuply_optget('page'), 'backuply') !== FALSE){ add_action('admin_notices', 'backuply_offer_handler'); } // Are we to disable the offer if(isset($_REQUEST['backuply_offer']) && (int)$_REQUEST['backuply_offer'] == 0 ){ if(!wp_verify_nonce(backuply_optreq('security'), 'backuply_promo_nonce')) { die('Security Check Failed'); } update_option('backuply_offer_time', (0 - time()), false); die('DONE'); } } if(!isset($_GET['page']) || $_GET['page'] !== 'backuply'){ return; } $litespeed_time = get_option('backuply_litespeed_notice', time()); if(extension_loaded('litespeed') && $litespeed_time <= time()){ if(!file_exists(ABSPATH .'.htaccess') || !preg_match('/noabort/i', file_get_contents(ABSPATH .'.htaccess'))){ add_action('admin_notices', 'backuply_litespeed_handler'); } } } // Shows a nag to the user, 1 week after last backup function backuply_backup_nag(){ $last_backup = get_option('backuply_last_backup'); echo '
'. sprintf(esc_html__( 'It\'s been %1$s days you took a backup, would you like to take a backup with Backuply and secure your website!', 'backuply' ), $days).' Backup Now'.(!defined('BACKUPLY_PRO') ? ' For automatic backup schedules please Upgrade to Pro' : '').'
'; } else{ echo ''. esc_html__( 'You haven\'t taken a backup since you activated Backuply, Take a backup and secure your website!', 'backuply' ).' Backup Now
'; } echo '