本文整理匯總了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');
}