Verzeichnisstruktur phpBB-3.2.0


Veröffentlicht
06.01.2017

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: 09.10.2024, 12:54 - Dateigröße: 2.26 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.cache:
08          alias: text_formatter.s9e.factory
09   
10      text_formatter.data_access:
11          class: phpbb\textformatter\data_access
12          arguments:
13              - '@dbal.conn'
14              - '%tables.bbcodes%'
15              - '%tables.smilies%'
16              - '%tables.styles%'
17              - '%tables.words%'
18              - '%core.root_path%styles/'
19   
20      text_formatter.parser:
21          alias: text_formatter.s9e.parser
22   
23      text_formatter.renderer:
24          alias: text_formatter.s9e.renderer
25   
26      text_formatter.utils:
27          alias: text_formatter.s9e.utils
28   
29      text_formatter.s9e.factory:
30          class: phpbb\textformatter\s9e\factory
31          arguments:
32              - '@text_formatter.data_access'
33              - '@cache.driver'
34              - '@dispatcher'
35              - '@config'
36              - '@text_formatter.s9e.link_helper'
37              - '%text_formatter.cache.dir%'
38              - '%text_formatter.cache.parser.key%'
39              - '%text_formatter.cache.renderer.key%'
40   
41      text_formatter.s9e.link_helper:
42          class: phpbb\textformatter\s9e\link_helper
43   
44      text_formatter.s9e.parser:
45          class: phpbb\textformatter\s9e\parser
46          arguments:
47              - '@cache.driver'
48              - '%text_formatter.cache.parser.key%'
49              - '@text_formatter.s9e.factory'
50              - '@dispatcher'
51   
52      text_formatter.s9e.quote_helper:
53          class: phpbb\textformatter\s9e\quote_helper
54          arguments:
55              - '@user'
56              - '%core.root_path%'
57              - '%core.php_ext%'
58   
59      text_formatter.s9e.renderer:
60          class: phpbb\textformatter\s9e\renderer
61          arguments:
62              - '@cache.driver'
63              - '%text_formatter.cache.dir%'
64              - '%text_formatter.cache.renderer.key%'
65              - '@text_formatter.s9e.factory'
66              - '@dispatcher'
67          calls:
68              - [configure_quote_helper, ['@text_formatter.s9e.quote_helper']]
69              - [configure_smilies_path, ['@config', '@path_helper']]
70              - [configure_user, ['@user', '@config', '@auth']]
71   
72      text_formatter.s9e.utils:
73          class: phpbb\textformatter\s9e\utils
74