mirror of
https://github.com/phpbb/phpbb.git
synced 2025-10-05 04:01:49 +02:00
ok, this one is rather large... the most important change:
re-introduce append_sid: old style continues to work, not a performance hog as it was in 2.0.x -> structure is different apart from this, code cleanage, bug fixing, etc. git-svn-id: file:///svn/phpbb/trunk@6015 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
define('IN_PHPBB', true);
|
||||
$phpbb_root_path = './';
|
||||
$phpEx = substr(strrchr(__FILE__, '.'), 1);
|
||||
include($phpbb_root_path . 'common.'.$phpEx);
|
||||
include($phpbb_root_path . 'common.' . $phpEx);
|
||||
|
||||
// Start session management
|
||||
$user->session_begin();
|
||||
@@ -29,85 +29,45 @@ switch ($mode)
|
||||
case 'bbcode':
|
||||
$l_title = $user->lang['BBCODE_GUIDE'];
|
||||
$user->add_lang('bbcode', false, true);
|
||||
break;
|
||||
break;
|
||||
|
||||
default:
|
||||
$l_title = $user->lang['FAQ'];
|
||||
$user->add_lang('faq', false, true);
|
||||
break;
|
||||
break;
|
||||
}
|
||||
|
||||
// Pull the array data from the lang pack
|
||||
$j = 0;
|
||||
$counter = 0;
|
||||
$counter_2 = 0;
|
||||
$help_block = array();
|
||||
$help_block_titles = array();
|
||||
|
||||
$help_blocks = array();
|
||||
foreach ($user->help as $help_ary)
|
||||
{
|
||||
if ($help_ary[0] != '--')
|
||||
if ($help_ary[0] == '--')
|
||||
{
|
||||
$help_block[$j][$counter]['id'] = $counter_2;
|
||||
$help_block[$j][$counter]['question'] = $help_ary[0];
|
||||
$help_block[$j][$counter]['answer'] = $help_ary[1];
|
||||
$template->assign_block_vars('faq_block', array(
|
||||
'BLOCK_TITLE' => $help_ary[1])
|
||||
);
|
||||
|
||||
$counter++;
|
||||
$counter_2++;
|
||||
continue;
|
||||
}
|
||||
else
|
||||
{
|
||||
$j = ($counter != 0) ? $j + 1 : 0;
|
||||
|
||||
$help_block_titles[$j] = $help_ary[1];
|
||||
|
||||
$counter = 0;
|
||||
}
|
||||
$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'])
|
||||
);
|
||||
|
||||
for ($i = 0, $size = sizeof($help_block); $i < $size; $i++)
|
||||
{
|
||||
if (sizeof($help_block[$i]))
|
||||
{
|
||||
$template->assign_block_vars('faq_block', array(
|
||||
'BLOCK_TITLE' => $help_block_titles[$i])
|
||||
);
|
||||
|
||||
$template->assign_block_vars('faq_block_link', array(
|
||||
'BLOCK_TITLE' => $help_block_titles[$i])
|
||||
);
|
||||
|
||||
for ($j = 0, $_size = sizeof($help_block[$i]); $j < $_size; $j++)
|
||||
{
|
||||
$template->assign_block_vars('faq_block.faq_row', array(
|
||||
'FAQ_QUESTION' => $help_block[$i][$j]['question'],
|
||||
'FAQ_ANSWER' => $help_block[$i][$j]['answer'],
|
||||
|
||||
'U_FAQ_ID' => 'f'.$help_block[$i][$j]['id'])
|
||||
);
|
||||
|
||||
$template->assign_block_vars('faq_block_link.faq_row_link', array(
|
||||
'FAQ_LINK' => $help_block[$i][$j]['question'],
|
||||
|
||||
'U_FAQ_LINK' => '#f' . $help_block[$i][$j]['id'])
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
page_header($l_title);
|
||||
|
||||
$template->set_filenames(array(
|
||||
'body' => 'faq_body.html')
|
||||
);
|
||||
make_jumpbox('viewforum.'.$phpEx);
|
||||
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
|
||||
|
||||
page_footer();
|
||||
|
||||
|
Reference in New Issue
Block a user