summaryrefslogtreecommitdiffstats
path: root/tools/install-xml-file-list
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-12-23 18:01:04 +0000
committerThierry Vignaud <tv@mageia.org>2012-12-23 18:01:04 +0000
commit6c479462a4d90c60348396e2f13375391f22d96a (patch)
tree4453964993decf1c7358dbbdc5efbd2acd317c71 /tools/install-xml-file-list
parent95d24865807ea5ab1811a46a6a8e455250d89f87 (diff)
downloaddrakx-6c479462a4d90c60348396e2f13375391f22d96a.tar
drakx-6c479462a4d90c60348396e2f13375391f22d96a.tar.gz
drakx-6c479462a4d90c60348396e2f13375391f22d96a.tar.bz2
drakx-6c479462a4d90c60348396e2f13375391f22d96a.tar.xz
drakx-6c479462a4d90c60348396e2f13375391f22d96a.zip
rename $gdb as $wrapper
Diffstat (limited to 'tools/install-xml-file-list')
0 files changed, 0 insertions, 0 deletions
class="hl com">/** * Constructor * * @param \phpbb\controller\helper $helper * @param \phpbb\event\dispatcher_interface $dispatcher * @param \phpbb\template\template $template * @param \phpbb\user $user * @param string $root_path * @param string $php_ext */ public function __construct(\phpbb\controller\helper $helper, \phpbb\event\dispatcher_interface $dispatcher, \phpbb\template\template $template, \phpbb\user $user, $root_path, $php_ext) { $this->helper = $helper; $this->dispatcher = $dispatcher; $this->template = $template; $this->user = $user; $this->root_path = $root_path; $this->php_ext = $php_ext; } /** * Controller for /help/{mode} routes * * @param string $mode * @return \Symfony\Component\HttpFoundation\Response A Symfony Response object * @throws http_exception when the $mode is not known by any extension */ public function handle($mode) { switch ($mode) { case 'faq': case 'bbcode': $page_title = ($mode === 'faq') ? $this->user->lang['FAQ_EXPLAIN'] : $this->user->lang['BBCODE_GUIDE']; $this->user->add_lang($mode, false, true); break; default: $page_title = $this->user->lang['FAQ_EXPLAIN']; $ext_name = $lang_file = ''; /** * You can use this event display a custom help page * * @event core.faq_mode_validation * @var string page_title Title of the page * @var string mode FAQ that is going to be displayed * @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 * @since 3.1.4-RC1 */ $vars = array( 'page_title', 'mode', 'lang_file', 'ext_name', ); extract($this->dispatcher->trigger_event('core.faq_mode_validation', compact($vars))); if ($ext_name === '' || $lang_file === '') { throw new http_exception(404, 'Not Found'); } $this->user->add_lang($lang_file, false, true, $ext_name); break; } $this->template->assign_vars(array( 'L_FAQ_TITLE' => $page_title, 'S_IN_FAQ' => true, )); $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); } /** * Assigns the help data to the template blocks * * @param array $help_data * @return null */ protected function assign_to_template(array $help_data) { // Pull the array data from the lang pack $switch_column = $found_switch = false; foreach ($help_data as $help_ary) { if ($help_ary[0] == '--') { if ($help_ary[1] == '--') { $switch_column = true; $found_switch = true; continue; } $this->template->assign_block_vars('faq_block', array( 'BLOCK_TITLE' => $help_ary[1], 'SWITCH_COLUMN' => $switch_column, )); if ($switch_column) { $switch_column = false; } continue; } $this->template->assign_block_vars('faq_block.faq_row', array( 'FAQ_QUESTION' => $help_ary[0], 'FAQ_ANSWER' => $help_ary[1], )); } $this->template->assign_var('SWITCH_COLUMN_MANUALLY', !$found_switch); } }