1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[feature/system-cron] add phpbb_ prefix to all class names

PHPBB3-9596
This commit is contained in:
Igor Wiedler
2010-10-28 22:26:49 +02:00
committed by Oleg Pudeyev
parent 0aa491ffa2
commit a9e0f9947d
15 changed files with 20 additions and 20 deletions

View File

@@ -25,7 +25,7 @@ if (!defined('IN_PHPBB'))
*
* @package phpBB3
*/
class cron_task_core_prune_all_forums extends cron_task_base
class phpbb_cron_task_core_prune_all_forums extends phpbb_cron_task_base
{
/**
* Runs this cron task.

View File

@@ -25,7 +25,7 @@ if (!defined('IN_PHPBB'))
*
* @package phpBB3
*/
class cron_task_core_prune_forum extends cron_task_base implements parametrized_cron_task
class phpbb_cron_task_core_prune_forum extends phpbb_cron_task_base implements phpbb_parametrized_cron_task
{
private $forum_data;

View File

@@ -21,7 +21,7 @@ if (!defined('IN_PHPBB'))
*
* @package phpBB3
*/
class cron_task_core_queue extends cron_task_base
class phpbb_cron_task_core_queue extends phpbb_cron_task_base
{
/**
* Runs this cron task.

View File

@@ -21,7 +21,7 @@ if (!defined('IN_PHPBB'))
*
* @package phpBB3
*/
class cron_task_core_tidy_cache extends cron_task_base
class phpbb_cron_task_core_tidy_cache extends phpbb_cron_task_base
{
/**
* Runs this cron task.

View File

@@ -21,7 +21,7 @@ if (!defined('IN_PHPBB'))
*
* @package phpBB3
*/
class cron_task_core_tidy_database extends cron_task_base
class phpbb_cron_task_core_tidy_database extends phpbb_cron_task_base
{
/**
* Runs this cron task.

View File

@@ -23,7 +23,7 @@ if (!defined('IN_PHPBB'))
*
* @package phpBB3
*/
class cron_task_core_tidy_search extends cron_task_base
class phpbb_cron_task_core_tidy_search extends phpbb_cron_task_base
{
/**
* Runs this cron task.

View File

@@ -21,7 +21,7 @@ if (!defined('IN_PHPBB'))
*
* @package phpBB3
*/
class cron_task_core_tidy_sessions extends cron_task_base
class phpbb_cron_task_core_tidy_sessions extends phpbb_cron_task_base
{
/**
* Runs this cron task.

View File

@@ -23,7 +23,7 @@ if (!defined('IN_PHPBB'))
*
* @package phpBB3
*/
class cron_task_core_tidy_warnings extends cron_task_base
class phpbb_cron_task_core_tidy_warnings extends phpbb_cron_task_base
{
/**
* Runs this cron task.