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_reparser.yml

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


001  services:
002      text_reparser.manager:
003          class: phpbb\textreparser\manager
004          arguments:
005              - '@config'
006              - '@config_text'
007              - '@text_reparser_collection'
008   
009      text_reparser.lock:
010          class: phpbb\lock\db
011          arguments:
012              - reparse_lock
013              - '@config'
014              - '@dbal.conn'
015   
016      text_reparser_collection:
017          class: phpbb\di\service_collection
018          arguments:
019              - '@service_container'
020          tags:
021              - { name: service_collection, tag: text_reparser.plugin }
022   
023      text_reparser.contact_admin_info:
024          class: phpbb\textreparser\plugins\contact_admin_info
025          arguments:
026              - '@config_text'
027          calls:
028              - [set_name, [contact_admin_info]]
029          tags:
030              - { name: text_reparser.plugin }
031   
032      text_reparser.forum_description:
033          class: phpbb\textreparser\plugins\forum_description
034          arguments:
035              - '@dbal.conn'
036              - '%tables.forums%'
037          calls:
038              - [set_name, [forum_description]]
039          tags:
040              - { name: text_reparser.plugin }
041   
042      text_reparser.forum_rules:
043          class: phpbb\textreparser\plugins\forum_rules
044          arguments:
045              - '@dbal.conn'
046              - '%tables.forums%'
047          calls:
048              - [set_name, [forum_rules]]
049          tags:
050              - { name: text_reparser.plugin }
051   
052      text_reparser.group_description:
053          class: phpbb\textreparser\plugins\group_description
054          arguments:
055              - '@dbal.conn'
056              - '%tables.groups%'
057          calls:
058              - [set_name, [group_description]]
059          tags:
060              - { name: text_reparser.plugin }
061   
062      text_reparser.pm_text:
063          class: phpbb\textreparser\plugins\pm_text
064          arguments:
065              - '@dbal.conn'
066              - '%tables.privmsgs%'
067          calls:
068              - [set_name, [pm_text]]
069          tags:
070              - { name: text_reparser.plugin }
071   
072      text_reparser.poll_option:
073          class: phpbb\textreparser\plugins\poll_option
074          arguments:
075              - '@dbal.conn'
076              - '%tables.poll_options%'
077          calls:
078              - [set_name, [poll_option]]
079          tags:
080              - { name: text_reparser.plugin }
081   
082      text_reparser.poll_title:
083          class: phpbb\textreparser\plugins\poll_title
084          arguments:
085              - '@dbal.conn'
086              - '%tables.topics%'
087          calls:
088              - [set_name, [poll_title]]
089          tags:
090              - { name: text_reparser.plugin }
091   
092      text_reparser.post_text:
093          class: phpbb\textreparser\plugins\post_text
094          arguments:
095              - '@dbal.conn'
096              - '%tables.posts%'
097          calls:
098              - [set_name, [post_text]]
099          tags:
100              - { name: text_reparser.plugin }
101   
102      text_reparser.user_signature:
103          class: phpbb\textreparser\plugins\user_signature
104          arguments:
105              - '@dbal.conn'
106              - '%tables.users%'
107          calls:
108              - [set_name, [user_signature]]
109          tags:
110              - { name: text_reparser.plugin }
111