PDF rausgenommen
This commit is contained in:
35
msd2/phpBB3/config/default/routing/feed.yml
Normal file
35
msd2/phpBB3/config/default/routing/feed.yml
Normal 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 }
|
7
msd2/phpBB3/config/default/routing/help.yml
Normal file
7
msd2/phpBB3/config/default/routing/help.yml
Normal 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 }
|
17
msd2/phpBB3/config/default/routing/report.yml
Normal file
17
msd2/phpBB3/config/default/routing/report.yml
Normal 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+
|
24
msd2/phpBB3/config/default/routing/routing.yml
Normal file
24
msd2/phpBB3/config/default/routing/routing.yml
Normal 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
|
Reference in New Issue
Block a user