<?php
/**
* eXtreme Message Board
* XMB 1.9.11
*
* Developed And Maintained By The XMB Group
* Copyright (c) 2001-2010, The XMB Group
* http://www.xmbforum.com
*
* Sponsored By iEntry, Inc.
* http://www.ientry.com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
**/
define('X_SCRIPT', 'faq.php');
require 'header.php';
$page = postedVar('page', '', FALSE, FALSE, FALSE, 'g');
if ($SETTINGS['faqstatus'] == 'off' && $page != 'forumrules') {
header('HTTP/1.0 403 Forbidden');
loadtemplates('misc_feature_notavailable');
eval('$css = "'.template('css').'";');
nav('<a href="faq.php">'.$lang['textfaq']. '</a>');
eval('$header = "'.template('header').'";');
eval('$featureoff = "'.template('misc_feature_notavailable').'";');
end_time();
eval('$footer = "'.template('footer').'";');
echo stripslashes($header.$featureoff.$footer);
exit();
}
nav('<a href="faq.php">'.$lang['textfaq'].'</a>');
switch($page) {
case 'usermaint':
setCanonicalLink("faq.php?page=$page");
loadtemplates('faq_usermaint');
nav($lang['textuserman']);
eval('$faq = "'.template('faq_usermaint').'";');
break;
case 'using':
setCanonicalLink("faq.php?page=$page");
loadtemplates('faq_using_rankrow', 'faq_using');
nav($lang['textuseboa']);
$stars = $rankrows = '';
$query = $db->query("SELECT * FROM ".X_PREFIX."ranks WHERE title !='Moderator' AND title !='Super Moderator' AND title !='Super Administrator' AND title !='Administrator' ORDER BY posts ASC");
while($ranks = $db->fetch_array($query)) {
$stars = str_repeat('<img src="'.$imgdir.'/star.gif" alt="*" border="0" />', $ranks['stars']);
eval('$rankrows .= "'.template('faq_using_rankrow').'";');
$stars = '';
}
$db->free_result($query);
eval('$faq = "'.template('faq_using').'";');
break;
case 'messages':
setCanonicalLink("faq.php?page=$page");
loadtemplates('faq_messages_smilierow', 'faq_messages');
$smilierows = NULL;
nav($lang['textpostread']);
$querysmilie = $db->query("SELECT * FROM `" .X_PREFIX. "smilies` WHERE type = 'smiley'");
while($smilie = $db->fetch_array($querysmilie)) {
eval('$smilierows .= "'.template('faq_messages_smilierow').'";');
}
$db->free_result($querysmilie);
eval('$faq = "'.template('faq_messages').'";');
break;
case 'forumrules':
setCanonicalLink("faq.php?page=$page");
loadtemplates('faq_forumrules');
nav();
nav($lang['textbbrules']);
if (empty($SETTINGS['bbrulestxt'])) {
$SETTINGS['bbrulestxt'] = $lang['textnone'];
} else {
$SETTINGS['bbrulestxt'] = nl2br(stripslashes($SETTINGS['bbrulestxt']));
}
eval('$faq = "'.template('faq_forumrules').'";');
break;
default:
setCanonicalLink('faq.php');
loadtemplates('faq');
eval('$faq = "'.template('faq').'";');
break;
}
eval('$css = "'.template('css').'";');
eval('$header = "'.template('header').'";');
end_time();
eval('$footer = "'.template('footer').'";');
echo $header, $faq, $footer;
?>