[ Index ]

PHP Cross Reference of phpBB-3.3.14-deutsch

title

Body

[close]

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

   1  parameters:
   2      text_formatter.cache.dir: '%core.cache_dir%'
   3      text_formatter.cache.parser.key: _text_formatter_parser
   4      text_formatter.cache.renderer.key: _text_formatter_renderer
   5  
   6  services:
   7      text_formatter.acp_utils:
   8          class: phpbb\textformatter\s9e\acp_utils
   9          arguments:
  10              - '@text_formatter.s9e.factory'
  11  
  12      text_formatter.cache:
  13          alias: text_formatter.s9e.factory
  14  
  15      text_formatter.data_access:
  16          class: phpbb\textformatter\data_access
  17          arguments:
  18              - '@dbal.conn'
  19              - '%tables.bbcodes%'
  20              - '%tables.smilies%'
  21              - '%tables.styles%'
  22              - '%tables.words%'
  23              - '%core.root_path%styles/'
  24  
  25      text_formatter.parser:
  26          alias: text_formatter.s9e.parser
  27  
  28      text_formatter.renderer:
  29          alias: text_formatter.s9e.renderer
  30  
  31      text_formatter.utils:
  32          alias: text_formatter.s9e.utils
  33  
  34      text_formatter.s9e.bbcode_merger:
  35          class: phpbb\textformatter\s9e\bbcode_merger
  36          arguments:
  37              - '@text_formatter.s9e.factory'
  38  
  39      text_formatter.s9e.factory:
  40          class: phpbb\textformatter\s9e\factory
  41          arguments:
  42              - '@text_formatter.data_access'
  43              - '@cache.driver'
  44              - '@dispatcher'
  45              - '@config'
  46              - '@text_formatter.s9e.link_helper'
  47              - '@log'
  48              - '%text_formatter.cache.dir%'
  49              - '%text_formatter.cache.parser.key%'
  50              - '%text_formatter.cache.renderer.key%'
  51  
  52      text_formatter.s9e.link_helper:
  53          class: phpbb\textformatter\s9e\link_helper
  54  
  55      text_formatter.s9e.parser:
  56          class: phpbb\textformatter\s9e\parser
  57          arguments:
  58              - '@cache.driver'
  59              - '%text_formatter.cache.parser.key%'
  60              - '@text_formatter.s9e.factory'
  61              - '@dispatcher'
  62  
  63      text_formatter.s9e.quote_helper:
  64          class: phpbb\textformatter\s9e\quote_helper
  65          arguments:
  66              - '@user'
  67              - '%core.root_path%'
  68              - '%core.php_ext%'
  69  
  70      text_formatter.s9e.renderer:
  71          class: phpbb\textformatter\s9e\renderer
  72          arguments:
  73              - '@cache.driver'
  74              - '%text_formatter.cache.dir%'
  75              - '%text_formatter.cache.renderer.key%'
  76              - '@text_formatter.s9e.factory'
  77              - '@dispatcher'
  78          calls:
  79              - [configure_quote_helper, ['@text_formatter.s9e.quote_helper']]
  80              - [configure_smilies_path, ['@config', '@path_helper']]
  81              - [configure_user, ['@user', '@config', '@auth']]
  82  
  83      text_formatter.s9e.utils:
  84          class: phpbb\textformatter\s9e\utils


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