mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[feature/system-cron] adjust some comments to reflect phpbb_ prefix
PHPBB3-9596
This commit is contained in:
parent
4f86b4d205
commit
b50e486567
1 changed files with 2 additions and 2 deletions
|
@ -34,14 +34,14 @@ class phpbb_cron_manager
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Finds cron task files.
|
* Finds cron task names.
|
||||||
*
|
*
|
||||||
* A cron task file must follow the naming convention:
|
* A cron task file must follow the naming convention:
|
||||||
* includes/cron/task/$mod/$name.php.
|
* includes/cron/task/$mod/$name.php.
|
||||||
* $mod is core for tasks that are part of phpbb.
|
* $mod is core for tasks that are part of phpbb.
|
||||||
* Modifications should use their name as $mod.
|
* Modifications should use their name as $mod.
|
||||||
* $name is the name of the cron task.
|
* $name is the name of the cron task.
|
||||||
* Cron task is expected to be a class named cron_task_${mod}_${name}.
|
* Cron task is expected to be a class named phpbb_cron_task_${mod}_${name}.
|
||||||
*
|
*
|
||||||
* Todo: consider caching found task file list in global cache.
|
* Todo: consider caching found task file list in global cache.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue