<?php// What action/tab do you want to show active?$_GET['action'] = 'custompage';// Set the banning active$ssi_ban = true;// Path to SSI.phprequire('forums/SSI.php');writeLog();// Page title. This will appear in the browser$context['page_title_html_safe'] = 'Page Title';// This is self explanatorytemplate_header(); // Here we define the link tree$context['linktree'] = array( 'href' => $scripturl,);// All your content below this:echo 'Heya, I\'m a custom page.';// no displayable content should be below the footer...// This is self explanatory too. template_footer(); ?>
'{action}' => array( 'title' => $txt['{action}'], // Text of nav bar item 'href' => $scripturl, // Link to your custom page so you might need to change... 'show' => true, 'sub_buttons' => array( ), 'is_last' => $context['right_to_left'],),
// Default to home.$current_action
if (!empty($_GET['{action}'])){ $current_action = '{action}';}