mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-06 06:25:04 +02:00
[feature/system-cron] Added includes for class dependencies.
PHPBB3-9596
This commit is contained in:
parent
e151741fb6
commit
fe72fe9878
@ -16,6 +16,8 @@ if (!defined('IN_PHPBB'))
|
||||
exit;
|
||||
}
|
||||
|
||||
include_once($phpbb_root_path . 'includes/cron/cron_task_wrapper.' . $phpEx);
|
||||
|
||||
/**
|
||||
* Cron manager class.
|
||||
*
|
||||
|
@ -16,6 +16,8 @@ if (!defined('IN_PHPBB'))
|
||||
exit;
|
||||
}
|
||||
|
||||
include_once($phpbb_root_path . 'includes/cron/cron_task.' . $phpEx);
|
||||
|
||||
/**
|
||||
* Cron task base class. Provides sensible defaults for cron tasks
|
||||
* and partially implements cron task interface, making writing cron tasks easier.
|
||||
|
@ -16,6 +16,8 @@ if (!defined('IN_PHPBB'))
|
||||
exit;
|
||||
}
|
||||
|
||||
include_once($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx);
|
||||
|
||||
/**
|
||||
* Prune all forums cron task.
|
||||
*
|
||||
|
@ -16,6 +16,8 @@ if (!defined('IN_PHPBB'))
|
||||
exit;
|
||||
}
|
||||
|
||||
include_once($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx);
|
||||
|
||||
/**
|
||||
* Prune one forum cron task.
|
||||
*
|
||||
|
@ -16,6 +16,8 @@ if (!defined('IN_PHPBB'))
|
||||
exit;
|
||||
}
|
||||
|
||||
include_once($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx);
|
||||
|
||||
/**
|
||||
* Queue cron task. Sends email and jabber messages queued by other scripts.
|
||||
*
|
||||
|
@ -16,6 +16,8 @@ if (!defined('IN_PHPBB'))
|
||||
exit;
|
||||
}
|
||||
|
||||
include_once($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx);
|
||||
|
||||
/**
|
||||
* Tidy cache cron task.
|
||||
*
|
||||
|
@ -16,6 +16,8 @@ if (!defined('IN_PHPBB'))
|
||||
exit;
|
||||
}
|
||||
|
||||
include_once($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx);
|
||||
|
||||
/**
|
||||
* Tidy database cron task.
|
||||
*
|
||||
|
@ -16,6 +16,8 @@ if (!defined('IN_PHPBB'))
|
||||
exit;
|
||||
}
|
||||
|
||||
include_once($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx);
|
||||
|
||||
/**
|
||||
* Tidy search cron task.
|
||||
*
|
||||
|
@ -16,6 +16,8 @@ if (!defined('IN_PHPBB'))
|
||||
exit;
|
||||
}
|
||||
|
||||
include_once($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx);
|
||||
|
||||
/**
|
||||
* Tidy sessions cron task.
|
||||
*
|
||||
|
@ -16,6 +16,8 @@ if (!defined('IN_PHPBB'))
|
||||
exit;
|
||||
}
|
||||
|
||||
include_once($phpbb_root_path . 'includes/cron/cron_task_base.' . $phpEx);
|
||||
|
||||
/**
|
||||
* Tidy warnings cron task.
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user