PDF rausgenommen

This commit is contained in:
aschwarz
2023-01-23 11:03:31 +01:00
parent 82d562a322
commit a6523903eb
28078 changed files with 4247552 additions and 2 deletions

View File

@ -0,0 +1,35 @@
phpbb_feed_forums:
path: /forums
defaults: { _controller: phpbb.feed.controller:forums }
phpbb_feed_news:
path: /news
defaults: { _controller: phpbb.feed.controller:news }
phpbb_feed_topics:
path: /topics
defaults: { _controller: phpbb.feed.controller:topics }
phpbb_feed_topics_active:
path: /topics_active
defaults: { _controller: phpbb.feed.controller:topics_active }
phpbb_feed_topics_new:
path: /topics_new
defaults: { _controller: phpbb.feed.controller:topics_new }
phpbb_feed_forum:
path: /forum/{forum_id}
defaults: { _controller: phpbb.feed.controller:forum }
requirements:
forum_id: \d+
phpbb_feed_topic:
path: /topic/{topic_id}
defaults: { _controller: phpbb.feed.controller:topic }
requirements:
topic_id: \d+
phpbb_feed_overall:
path: /{mode}
defaults: { _controller: phpbb.feed.controller:overall }

View File

@ -0,0 +1,7 @@
phpbb_help_bbcode_controller:
path: /bbcode
defaults: { _controller: phpbb.help.controller.bbcode:handle }
phpbb_help_faq_controller:
path: /faq
defaults: { _controller: phpbb.help.controller.faq:handle }

View File

@ -0,0 +1,17 @@
phpbb_report_pm_controller:
path: /pm/{id}/report
methods: [GET, POST]
defaults:
_controller: phpbb.report.controller:handle
mode: 'pm'
requirements:
id: \d+
phpbb_report_post_controller:
path: /post/{id}/report
methods: [GET, POST]
defaults:
_controller: phpbb.report.controller:handle
mode: 'post'
requirements:
id: \d+

View File

@ -0,0 +1,24 @@
# Structure:
#
# foo_controller:
# path: /foo
# defaults: { _controller: foo_sevice:method }
#
# The above will be accessed via app.php?controller=foo and it will
# instantiate the 'foo_service' service and call the 'method' method.
#
phpbb_feed_routing:
resource: feed.yml
prefix: /feed
phpbb_feed_index:
path: /feed
defaults: { _controller: phpbb.feed.controller:overall }
phpbb_help_routing:
resource: help.yml
prefix: /help
phpbb_report_routing:
resource: report.yml