1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

Merge pull request #3613 from nickvergessen/ticket/13844

Ticket/13844 Better FAQ language files
This commit is contained in:
Tristan Darricau
2015-05-29 15:44:39 +02:00
21 changed files with 1265 additions and 32 deletions

View File

@@ -1,10 +1,27 @@
services:
phpbb.help.controller:
class: phpbb\help\controller\help
phpbb.help.manager:
class: phpbb\help\manager
arguments:
- @dispatcher
- @language
- @template
phpbb.help.controller.bbcode:
class: phpbb\help\controller\bbcode
arguments:
- @controller.helper
- @dispatcher
- @phpbb.help.manager
- @template
- @user
- @language
- %core.root_path%
- %core.php_ext%
phpbb.help.controller.faq:
class: phpbb\help\controller\faq
arguments:
- @controller.helper
- @phpbb.help.manager
- @template
- @language
- %core.root_path%
- %core.php_ext%

View File

@@ -1,3 +1,7 @@
phpbb_help_controller:
path: /{mode}
defaults: { _controller: phpbb.help.controller:handle }
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 }