Verzeichnisstruktur phpBB-3.3.15


Veröffentlicht
28.08.2024

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

services_text_formatter.yml

Zuletzt modifiziert: 02.04.2025, 15:02 - Dateigröße: 2.57 KiB


01  parameters:
02      text_formatter.cache.dir: '%core.cache_dir%'
03      text_formatter.cache.parser.key: _text_formatter_parser
04      text_formatter.cache.renderer.key: _text_formatter_renderer
05   
06  services:
07      text_formatter.acp_utils:
08          class: phpbb\textformatter\s9e\acp_utils
09          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
85