aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/faq.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2009-10-04 18:14:59 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2009-10-04 18:14:59 +0000
commit2e17e448deed073f8614bb555a8ef20c57291c2a (patch)
tree533007e53d3584d0887b0f639d0e673b1e15ea7a /phpBB/faq.php
parentbf8ac19eaa8d74f9dfd6d597190f5664e7339382 (diff)
downloadforums-2e17e448deed073f8614bb555a8ef20c57291c2a.tar
forums-2e17e448deed073f8614bb555a8ef20c57291c2a.tar.gz
forums-2e17e448deed073f8614bb555a8ef20c57291c2a.tar.bz2
forums-2e17e448deed073f8614bb555a8ef20c57291c2a.tar.xz
forums-2e17e448deed073f8614bb555a8ef20c57291c2a.zip
Copy 3.0.x branch to trunk
git-svn-id: file:///svn/phpbb/trunk@10211 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/faq.php')
-rw-r--r--phpBB/faq.php89
1 files changed, 89 insertions, 0 deletions
diff --git a/phpBB/faq.php b/phpBB/faq.php
new file mode 100644
index 0000000000..0a04bad8eb
--- /dev/null
+++ b/phpBB/faq.php
@@ -0,0 +1,89 @@
+<?php
+/**
+*
+* @package phpBB3
+* @version $Id$
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+*
+*/
+
+/**
+* @ignore
+*/
+define('IN_PHPBB', true);
+$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
+$phpEx = substr(strrchr(__FILE__, '.'), 1);
+include($phpbb_root_path . 'common.' . $phpEx);
+
+// Start session management
+$user->session_begin();
+$auth->acl($user->data);
+$user->setup();
+
+$mode = request_var('mode', '');
+
+// Load the appropriate faq file
+switch ($mode)
+{
+ case 'bbcode':
+ $l_title = $user->lang['BBCODE_GUIDE'];
+ $user->add_lang('bbcode', false, true);
+ break;
+
+ default:
+ $l_title = $user->lang['FAQ_EXPLAIN'];
+ $user->add_lang('faq', false, true);
+ break;
+}
+
+// Pull the array data from the lang pack
+$switch_column = $found_switch = false;
+$help_blocks = array();
+foreach ($user->help as $help_ary)
+{
+ if ($help_ary[0] == '--')
+ {
+ if ($help_ary[1] == '--')
+ {
+ $switch_column = true;
+ $found_switch = true;
+ continue;
+ }
+
+ $template->assign_block_vars('faq_block', array(
+ 'BLOCK_TITLE' => $help_ary[1],
+ 'SWITCH_COLUMN' => $switch_column,
+ ));
+
+ if ($switch_column)
+ {
+ $switch_column = false;
+ }
+ continue;
+ }
+
+ $template->assign_block_vars('faq_block.faq_row', array(
+ 'FAQ_QUESTION' => $help_ary[0],
+ 'FAQ_ANSWER' => $help_ary[1])
+ );
+}
+
+// Lets build a page ...
+$template->assign_vars(array(
+ 'L_FAQ_TITLE' => $l_title,
+ 'L_BACK_TO_TOP' => $user->lang['BACK_TO_TOP'],
+
+ 'SWITCH_COLUMN_MANUALLY' => (!$found_switch) ? true : false,
+));
+
+page_header($l_title, false);
+
+$template->set_filenames(array(
+ 'body' => 'faq_body.html')
+);
+make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
+
+page_footer();
+
+?> \ No newline at end of file