2012-04-09 00:22:55 +02:00
|
|
|
services:
|
|
|
|
cron.task.core.prune_all_forums:
|
|
|
|
class: phpbb_cron_task_core_prune_all_forums
|
|
|
|
arguments:
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
|
|
|
- @config
|
|
|
|
- @dbal.conn
|
|
|
|
tags:
|
|
|
|
- { name: cron.task }
|
|
|
|
|
|
|
|
cron.task.core.prune_forum:
|
|
|
|
class: phpbb_cron_task_core_prune_forum
|
|
|
|
arguments:
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
|
|
|
- @config
|
|
|
|
- @dbal.conn
|
|
|
|
tags:
|
|
|
|
- { name: cron.task }
|
|
|
|
|
|
|
|
cron.task.core.queue:
|
|
|
|
class: phpbb_cron_task_core_queue
|
|
|
|
arguments:
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
|
|
|
- @config
|
|
|
|
tags:
|
|
|
|
- { name: cron.task }
|
|
|
|
|
|
|
|
cron.task.core.tidy_cache:
|
|
|
|
class: phpbb_cron_task_core_tidy_cache
|
|
|
|
arguments:
|
|
|
|
- @config
|
|
|
|
- @cache.driver
|
|
|
|
tags:
|
|
|
|
- { name: cron.task }
|
|
|
|
|
|
|
|
cron.task.core.tidy_database:
|
|
|
|
class: phpbb_cron_task_core_tidy_database
|
|
|
|
arguments:
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
|
|
|
- @config
|
|
|
|
tags:
|
|
|
|
- { name: cron.task }
|
|
|
|
|
|
|
|
cron.task.core.tidy_search:
|
|
|
|
class: phpbb_cron_task_core_tidy_search
|
|
|
|
arguments:
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2012-08-25 17:00:40 +02:00
|
|
|
- @auth
|
2012-04-09 00:22:55 +02:00
|
|
|
- @config
|
2012-08-25 17:00:40 +02:00
|
|
|
- @dbal.conn
|
|
|
|
- @user
|
2012-04-09 00:22:55 +02:00
|
|
|
tags:
|
|
|
|
- { name: cron.task }
|
|
|
|
|
|
|
|
cron.task.core.tidy_sessions:
|
|
|
|
class: phpbb_cron_task_core_tidy_sessions
|
|
|
|
arguments:
|
|
|
|
- @config
|
|
|
|
- @user
|
|
|
|
tags:
|
|
|
|
- { name: cron.task }
|
|
|
|
|
|
|
|
cron.task.core.tidy_warnings:
|
|
|
|
class: phpbb_cron_task_core_tidy_warnings
|
|
|
|
arguments:
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
|
|
|
- @config
|
|
|
|
tags:
|
|
|
|
- { name: cron.task }
|