aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/help
diff options
context:
space:
mode:
authorrxu <rxu@mail.ru>2017-04-27 15:16:55 +0700
committerrxu <rxu@mail.ru>2017-04-27 21:14:43 +0700
commit3114e5399c015e4679572102202eee7c99e6d2b5 (patch)
tree42ccfb9f5c37e17c4da01e73df5ad46a7741511e /phpBB/phpbb/help
parent476e51f7dbdd19f5d9d3dddbb7554f614b9c8e37 (diff)
downloadforums-3114e5399c015e4679572102202eee7c99e6d2b5.tar
forums-3114e5399c015e4679572102202eee7c99e6d2b5.tar.gz
forums-3114e5399c015e4679572102202eee7c99e6d2b5.tar.bz2
forums-3114e5399c015e4679572102202eee7c99e6d2b5.tar.xz
forums-3114e5399c015e4679572102202eee7c99e6d2b5.zip
[ticket/15200] Allow extensions using custom templates for help/faq controllers
PHPBB3-15200
Diffstat (limited to 'phpBB/phpbb/help')
-rw-r--r--phpBB/phpbb/help/controller/help.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/phpbb/help/controller/help.php b/phpBB/phpbb/help/controller/help.php
index 9cc3b0c8b4..3bf6fe3098 100644
--- a/phpBB/phpbb/help/controller/help.php
+++ b/phpBB/phpbb/help/controller/help.php
@@ -64,6 +64,7 @@ class help
*/
public function handle($mode)
{
+ $template_file = 'faq_body.html';
switch ($mode)
{
case 'faq':
@@ -85,13 +86,16 @@ class help
* @var string lang_file Language file containing the help data
* @var string ext_name Vendor and extension name where the help
* language file can be loaded from
+ * @var string template_file Template file name
* @since 3.1.4-RC1
+ * @changed 3.1.11-RC1 Added template_file var
*/
$vars = array(
'page_title',
'mode',
'lang_file',
'ext_name',
+ 'template_file',
);
extract($this->dispatcher->trigger_event('core.faq_mode_validation', compact($vars)));
@@ -113,7 +117,7 @@ class help
$this->assign_to_template($this->user->help);
make_jumpbox(append_sid("{$this->root_path}viewforum.{$this->php_ext}"));
- return $this->helper->render('faq_body.html', $page_title);
+ return $this->helper->render($template_file, $page_title);
}
/**