本文整理汇总了PHP中WYSIJA::croned_bounce方法的典型用法代码示例。如果您正苦于以下问题:PHP WYSIJA::croned_bounce方法的具体用法?PHP WYSIJA::croned_bounce怎么用?PHP WYSIJA::croned_bounce使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WYSIJA
的用法示例。
在下文中一共展示了WYSIJA::croned_bounce方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: dirname
}
if ($process) {
/*include the needed parts of wp plus wysija*/
$plugin_path = dirname(__FILE__);
$wp_root = dirname(dirname(dirname($plugin_path)));
require_once $wp_root . DIRECTORY_SEPARATOR . 'wp-config.php';
require_once $wp_root . DIRECTORY_SEPARATOR . 'wp-includes' . DIRECTORY_SEPARATOR . 'wp-db.php';
require_once $plugin_path . DIRECTORY_SEPARATOR . "core" . DIRECTORY_SEPARATOR . "base.php";
if (!isset($_REQUEST[WYSIJA_CRON]) || (isset($_SERVER['argv'][1]) || $_SERVER['argv'][1] != WYSIJA_CRON)) {
exit;
}
//if($report) require_once(WYSIJA_INC."debug.php");
switch ($process) {
case 'queue':
WYSIJA::croned_queue();
break;
case 'bounce':
WYSIJA::croned_bounce();
break;
case 'daily':
WYSIJA::croned_daily();
break;
case 'weekly':
WYSIJA::croned_weekly();
break;
case 'monthly':
WYSIJA::croned_monthly();
break;
}
//if($report) dbg('report');
}