[ Index ]

PHP Cross Reference of phpBB-3.3.14-deutsch

title

Body

[close]

/config/default/container/ -> services_cron.yml (source)

   1  services:
   2      cron.manager:
   3          class: phpbb\cron\manager
   4          arguments:
   5              - '@service_container'
   6              - '@routing.helper'
   7              - '%core.root_path%'
   8              - '%core.php_ext%'
   9              - '@template'
  10  
  11      cron.lock_db:
  12          class: phpbb\lock\db
  13          arguments:
  14              - cron_lock
  15              - '@config'
  16              - '@dbal.conn'
  17  
  18      cron.controller:
  19          class: phpbb\cron\controller\cron
  20  
  21      cron.event_listener:
  22          class: phpbb\cron\event\cron_runner_listener
  23          arguments:
  24              - '@cron.lock_db'
  25              - '@cron.manager'
  26              - '@request'
  27          tags:
  28              - { name: kernel.event_subscriber }
  29  
  30  # ----- Cron tasks -----
  31      cron.task_collection:
  32          class: phpbb\di\service_collection
  33          arguments:
  34              - '@service_container'
  35          tags:
  36              - { name: service_collection, tag: cron.task }
  37  
  38      cron.task.core.prune_all_forums:
  39          class: phpbb\cron\task\core\prune_all_forums
  40          arguments:
  41              - '%core.root_path%'
  42              - '%core.php_ext%'
  43              - '@config'
  44              - '@dbal.conn'
  45          calls:
  46              - [set_name, [cron.task.core.prune_all_forums]]
  47          tags:
  48              - { name: cron.task }
  49  
  50      cron.task.core.prune_forum:
  51          class: phpbb\cron\task\core\prune_forum
  52          arguments:
  53              - '%core.root_path%'
  54              - '%core.php_ext%'
  55              - '@config'
  56              - '@dbal.conn'
  57          calls:
  58              - [set_name, [cron.task.core.prune_forum]]
  59          tags:
  60              - { name: cron.task }
  61  
  62      cron.task.core.prune_shadow_topics:
  63          class: phpbb\cron\task\core\prune_shadow_topics
  64          arguments:
  65              - '%core.root_path%'
  66              - '%core.php_ext%'
  67              - '@config'
  68              - '@dbal.conn'
  69              - '@log'
  70              - '@user'
  71          calls:
  72              - [set_name, [cron.task.core.prune_shadow_topics]]
  73          tags:
  74              - { name: cron.task }
  75  
  76      cron.task.core.prune_notifications:
  77          class: phpbb\cron\task\core\prune_notifications
  78          arguments:
  79              - '@config'
  80              - '@notification_manager'
  81          calls:
  82              - [set_name, [cron.task.core.prune_notifications]]
  83          tags:
  84              - { name: cron.task }
  85  
  86      cron.task.core.queue:
  87          class: phpbb\cron\task\core\queue
  88          arguments:
  89              - '%core.root_path%'
  90              - '%core.php_ext%'
  91              - '@config'
  92              - '%core.cache_dir%'
  93          calls:
  94              - [set_name, [cron.task.core.queue]]
  95          tags:
  96              - { name: cron.task }
  97  
  98      cron.task.core.tidy_cache:
  99          class: phpbb\cron\task\core\tidy_cache
 100          arguments:
 101              - '@config'
 102              - '@cache.driver'
 103          calls:
 104              - [set_name, [cron.task.core.tidy_cache]]
 105          tags:
 106              - { name: cron.task }
 107  
 108      cron.task.core.tidy_database:
 109          class: phpbb\cron\task\core\tidy_database
 110          arguments:
 111              - '%core.root_path%'
 112              - '%core.php_ext%'
 113              - '@config'
 114          calls:
 115              - [set_name, [cron.task.core.tidy_database]]
 116          tags:
 117              - { name: cron.task }
 118  
 119      cron.task.core.tidy_plupload:
 120          class: phpbb\cron\task\core\tidy_plupload
 121          arguments:
 122              - '%core.root_path%'
 123              - '@config'
 124              - '@log'
 125              - '@user'
 126          calls:
 127              - [set_name, [cron.task.core.tidy_plupload]]
 128          tags:
 129              - { name: cron.task }
 130  
 131      cron.task.core.tidy_search:
 132          class: phpbb\cron\task\core\tidy_search
 133          arguments:
 134              - '%core.root_path%'
 135              - '%core.php_ext%'
 136              - '@auth'
 137              - '@config'
 138              - '@dbal.conn'
 139              - '@user'
 140              - '@dispatcher'
 141          calls:
 142              - [set_name, [cron.task.core.tidy_search]]
 143          tags:
 144              - { name: cron.task }
 145  
 146      cron.task.core.tidy_sessions:
 147          class: phpbb\cron\task\core\tidy_sessions
 148          arguments:
 149              - '@config'
 150              - '@user'
 151          calls:
 152              - [set_name, [cron.task.core.tidy_sessions]]
 153          tags:
 154              - { name: cron.task }
 155  
 156      cron.task.core.tidy_warnings:
 157          class: phpbb\cron\task\core\tidy_warnings
 158          arguments:
 159              - '%core.root_path%'
 160              - '%core.php_ext%'
 161              - '@config'
 162          calls:
 163              - [set_name, [cron.task.core.tidy_warnings]]
 164          tags:
 165              - { name: cron.task }
 166  
 167      cron.task.text_reparser.pm_text:
 168          class: phpbb\cron\task\text_reparser\reparser
 169          arguments:
 170              - '@config'
 171              - '@config_text'
 172              - '@text_reparser.lock'
 173              - '@text_reparser.manager'
 174              - '@text_reparser_collection'
 175          calls:
 176              - [set_name, [cron.task.text_reparser.pm_text]]
 177              - [set_reparser, [text_reparser.pm_text]]
 178          tags:
 179              - { name: cron.task }
 180  
 181      cron.task.text_reparser.poll_option:
 182          class: phpbb\cron\task\text_reparser\reparser
 183          arguments:
 184              - '@config'
 185              - '@config_text'
 186              - '@text_reparser.lock'
 187              - '@text_reparser.manager'
 188              - '@text_reparser_collection'
 189          calls:
 190              - [set_name, [cron.task.text_reparser.poll_option]]
 191              - [set_reparser, [text_reparser.poll_option]]
 192          tags:
 193              - { name: cron.task }
 194  
 195      cron.task.text_reparser.poll_title:
 196          class: phpbb\cron\task\text_reparser\reparser
 197          arguments:
 198              - '@config'
 199              - '@config_text'
 200              - '@text_reparser.lock'
 201              - '@text_reparser.manager'
 202              - '@text_reparser_collection'
 203          calls:
 204              - [set_name, [cron.task.text_reparser.poll_title]]
 205              - [set_reparser, [text_reparser.poll_title]]
 206          tags:
 207              - { name: cron.task }
 208  
 209      cron.task.text_reparser.post_text:
 210          class: phpbb\cron\task\text_reparser\reparser
 211          arguments:
 212              - '@config'
 213              - '@config_text'
 214              - '@text_reparser.lock'
 215              - '@text_reparser.manager'
 216              - '@text_reparser_collection'
 217          calls:
 218              - [set_name, [cron.task.text_reparser.post_text]]
 219              - [set_reparser, [text_reparser.post_text]]
 220          tags:
 221              - { name: cron.task }
 222  
 223      cron.task.text_reparser.user_signature:
 224          class: phpbb\cron\task\text_reparser\reparser
 225          arguments:
 226              - '@config'
 227              - '@config_text'
 228              - '@text_reparser.lock'
 229              - '@text_reparser.manager'
 230              - '@text_reparser_collection'
 231          calls:
 232              - [set_name, [cron.task.text_reparser.user_signature]]
 233              - [set_reparser, [text_reparser.user_signature]]
 234          tags:
 235              - { name: cron.task }
 236  
 237      cron.task.core.update_hashes:
 238          class: phpbb\cron\task\core\update_hashes
 239          arguments:
 240              - '@config'
 241              - '@dbal.conn'
 242              - '@passwords.update.lock'
 243              - '@passwords.manager'
 244              - '@passwords.driver_collection'
 245              - '%passwords.algorithms%'
 246          calls:
 247              - [set_name, [cron.task.core.update_hashes]]
 248          tags:
 249              - { name: cron.task }


Generated: Mon Nov 25 19:05:08 2024 Cross-referenced by PHPXref 0.7.1