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

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 2.93 KiB


001  services:
002      phpbb.feed.controller:
003          class: phpbb\feed\controller\feed
004          arguments:
005              - '@template.twig.environment'
006              - '@symfony_request'
007              - '@controller.helper'
008              - '@config'
009              - '@dbal.conn'
010              - '@service_container'
011              - '@feed.helper'
012              - '@user'
013              - '@auth'
014              - '@dispatcher'
015              - '%core.php_ext%'
016   
017      feed.helper:
018          class: phpbb\feed\helper
019          arguments:
020              - '@config'
021              - '@user'
022              - '%core.root_path%'
023              - '%core.php_ext%'
024   
025      feed.forum:
026          class: phpbb\feed\forum
027          shared: false
028          arguments:
029              - '@feed.helper'
030              - '@config'
031              - '@dbal.conn'
032              - '@cache.driver'
033              - '@user'
034              - '@auth'
035              - '@content.visibility'
036              - '@dispatcher'
037              - '%core.php_ext%'
038   
039      feed.forums:
040          class: phpbb\feed\forums
041          shared: false
042          arguments:
043              - '@feed.helper'
044              - '@config'
045              - '@dbal.conn'
046              - '@cache.driver'
047              - '@user'
048              - '@auth'
049              - '@content.visibility'
050              - '@dispatcher'
051              - '%core.php_ext%'
052   
053      feed.news:
054          class: phpbb\feed\news
055          shared: false
056          arguments:
057              - '@feed.helper'
058              - '@config'
059              - '@dbal.conn'
060              - '@cache.driver'
061              - '@user'
062              - '@auth'
063              - '@content.visibility'
064              - '@dispatcher'
065              - '%core.php_ext%'
066   
067      feed.overall:
068          class: phpbb\feed\overall
069          shared: false
070          arguments:
071              - '@feed.helper'
072              - '@config'
073              - '@dbal.conn'
074              - '@cache.driver'
075              - '@user'
076              - '@auth'
077              - '@content.visibility'
078              - '@dispatcher'
079              - '%core.php_ext%'
080   
081      feed.topic:
082          class: phpbb\feed\topic
083          shared: false
084          arguments:
085              - '@feed.helper'
086              - '@config'
087              - '@dbal.conn'
088              - '@cache.driver'
089              - '@user'
090              - '@auth'
091              - '@content.visibility'
092              - '@dispatcher'
093              - '%core.php_ext%'
094   
095      feed.topics:
096          class: phpbb\feed\topics
097          shared: false
098          arguments:
099              - '@feed.helper'
100              - '@config'
101              - '@dbal.conn'
102              - '@cache.driver'
103              - '@user'
104              - '@auth'
105              - '@content.visibility'
106              - '@dispatcher'
107              - '%core.php_ext%'
108   
109      feed.topics_active:
110          class: phpbb\feed\topics_active
111          shared: false
112          arguments:
113              - '@feed.helper'
114              - '@config'
115              - '@dbal.conn'
116              - '@cache.driver'
117              - '@user'
118              - '@auth'
119              - '@content.visibility'
120              - '@dispatcher'
121              - '%core.php_ext%'
122