mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-06 15:45:34 +02:00
65 lines
1.3 KiB
PHP
65 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* @package phpBB3
|
|
* @copyright (c) 2010 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* @ignore
|
|
*/
|
|
if (!defined('IN_PHPBB'))
|
|
{
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Cron task interface
|
|
* @package phpBB3
|
|
*/
|
|
interface phpbb_cron_task
|
|
{
|
|
/**
|
|
* Runs this cron task.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run();
|
|
|
|
/**
|
|
* Returns whether this cron task can run, given current board configuration.
|
|
*
|
|
* For example, a cron task that prunes forums can only run when
|
|
* forum pruning is enabled.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function is_runnable();
|
|
|
|
/**
|
|
* Returns whether this cron task should run now, because enough time
|
|
* has passed since it was last run.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function should_run();
|
|
|
|
/**
|
|
* Returns whether this cron task can be run in shutdown function.
|
|
*
|
|
* By the time shutdown sequence invokes a particular piece of code,
|
|
* resources that that code requires may already be released.
|
|
* If so, a particular cron task may be marked shutdown function-
|
|
* unsafe, and it will be executed in normal program flow.
|
|
*
|
|
* Generally speaking cron tasks should start off as shutdown function-
|
|
* safe, and only be marked shutdown function-unsafe if a problem
|
|
* is discovered.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function is_shutdown_function_safe();
|
|
}
|