[feature/system-cron] adjust some comments to reflect phpbb_ prefix

PHPBB3-9596
This commit is contained in:
Igor Wiedler 2010-10-29 11:50:39 +02:00 committed by Oleg Pudeyev
parent 4f86b4d205
commit b50e486567

View file

@ -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:
* includes/cron/task/$mod/$name.php.
* $mod is core for tasks that are part of phpbb.
* Modifications should use their name as $mod.
* $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.
*/