当前位置: 首页>>代码示例>>PHP>>正文


PHP WYSIJA::cron_check方法代码示例

本文整理汇总了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');
开发者ID:sontv1003,项目名称:fashionbeans,代码行数:31,代码来源:base.php


注:本文中的WYSIJA::cron_check方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。