本文整理汇总了PHP中WYSIJA::cron_check方法的典型用法代码示例。如果您正苦于以下问题:PHP WYSIJA::cron_check方法的具体用法?PHP WYSIJA::cron_check怎么用?PHP WYSIJA::cron_check使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WYSIJA
的用法示例。
在下文中一共展示了WYSIJA::cron_check方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: wp_clear_scheduled_hook
wp_clear_scheduled_hook('wysija_cron_queue');
WYSIJA::set_cron_schedule('queue');
$ms_wysija_sending_cron[$blog_id] = 1;
update_site_option('ms_wysija_sending_cron', $ms_wysija_sending_cron);
}
}
//simply schedule the queue
if (!wp_next_scheduled('wysija_cron_queue')) {
//in the case of multisite and the network's method we schedule with a different frequency
if ($is_multisite && $modelConf->getValue('sending_method') == 'network') {
$sending_emails_each = $modelConf->getValue('ms_sending_emails_each');
} else {
$sending_emails_each = $modelConf->getValue('sending_emails_each');
}
wp_schedule_event($modelConf->getValue('last_save'), $sending_emails_each, 'wysija_cron_queue');
}
}
}
//not yet used but the purpose is to override any notification sent through wp_mail
if ($modelConf->getValue('wp_notifications')) {
$hWPnotif =& WYSIJA::get('wp_notifications', 'helper');
}
//check that there is no late cron schedules if we are using wysija's cron option and that the cron option is triggerred by any page view
if ($modelConf->getValue('cron_manual') && !isset($_REQUEST['process'])) {
WYSIJA::cron_check();
}
register_deactivation_hook(WYSIJA_FILE, array('WYSIJA', 'deactivate'));
register_activation_hook(WYSIJA_FILE, array('WYSIJA', 'activate'));
add_action('init', array('WYSIJA', 'create_post_type'));
//launch application
$helper =& WYSIJA::get(WYSIJA_SIDE, 'helper');