Blame Extras/phpBB/3.0.4/faq.php

4c79b5
4c79b5
/**
4c79b5
*
4c79b5
* @package phpBB3
4c79b5
* @version $Id: faq.php 8479 2008-03-29 00:22:48Z naderman $
4c79b5
* @copyright (c) 2005 phpBB Group
4c79b5
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
4c79b5
*
4c79b5
*/
4c79b5
4c79b5
/**
4c79b5
* @ignore
4c79b5
*/
4c79b5
define('IN_PHPBB', true);
4c79b5
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
4c79b5
$phpEx = substr(strrchr(__FILE__, '.'), 1);
4c79b5
include($phpbb_root_path . 'common.' . $phpEx);
4c79b5
4c79b5
// Start session management
4c79b5
$user->session_begin();
4c79b5
$auth->acl($user->data);
4c79b5
$user->setup();
4c79b5
4c79b5
$mode = request_var('mode', '');
4c79b5
4c79b5
// Load the appropriate faq file
4c79b5
switch ($mode)
4c79b5
{
4c79b5
	case 'bbcode':
4c79b5
		$l_title = $user->lang['BBCODE_GUIDE'];
4c79b5
		$user->add_lang('bbcode', false, true);
4c79b5
	break;
4c79b5
4c79b5
	default:
4c79b5
		$l_title = $user->lang['FAQ_EXPLAIN'];
4c79b5
		$user->add_lang('faq', false, true);
4c79b5
	break;
4c79b5
}
4c79b5
4c79b5
// Pull the array data from the lang pack
4c79b5
$help_blocks = array();
4c79b5
foreach ($user->help as $help_ary)
4c79b5
{
4c79b5
	if ($help_ary[0] == '--')
4c79b5
	{
4c79b5
		$template->assign_block_vars('faq_block', array(
4c79b5
			'BLOCK_TITLE'		=> $help_ary[1])
4c79b5
		);
4c79b5
4c79b5
		continue;
4c79b5
	}
4c79b5
4c79b5
	$template->assign_block_vars('faq_block.faq_row', array(
4c79b5
		'FAQ_QUESTION'		=> $help_ary[0],
4c79b5
		'FAQ_ANSWER'		=> $help_ary[1])
4c79b5
	);
4c79b5
}
4c79b5
4c79b5
// Lets build a page ...
4c79b5
$template->assign_vars(array(
4c79b5
	'L_FAQ_TITLE'	=> $l_title,
4c79b5
	'L_BACK_TO_TOP'	=> $user->lang['BACK_TO_TOP'])
4c79b5
);
4c79b5
4c79b5
page_header($l_title);
4c79b5
4c79b5
$template->set_filenames(array(
4c79b5
	'body' => 'faq_body.html')
4c79b5
);
4c79b5
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
4c79b5
4c79b5
page_footer();
4c79b5
4c79b5
?>