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

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 2.97 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          calls:
077              - [set_name, [poll_option]]
078          tags:
079              - { name: text_reparser.plugin }
080   
081      text_reparser.poll_title:
082          class: phpbb\textreparser\plugins\poll_title
083          arguments:
084              - '@dbal.conn'
085              - '%tables.topics%'
086          calls:
087              - [set_name, [poll_title]]
088          tags:
089              - { name: text_reparser.plugin }
090   
091      text_reparser.post_text:
092          class: phpbb\textreparser\plugins\post_text
093          arguments:
094              - '@dbal.conn'
095              - '%tables.posts%'
096          calls:
097              - [set_name, [post_text]]
098          tags:
099              - { name: text_reparser.plugin }
100   
101      text_reparser.user_signature:
102          class: phpbb\textreparser\plugins\user_signature
103          arguments:
104              - '@dbal.conn'
105              - '%tables.users%'
106          calls:
107              - [set_name, [user_signature]]
108          tags:
109              - { name: text_reparser.plugin }
110