From dc0fb9445e8a3ede8bc33d6779fadd89b7ea6893 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Sat, 3 Oct 2009 10:30:17 -0400 Subject: Created Theme Switcher Also rewrote the way layouts work. Now, each layout requires a "layout.tpl" file (which contains the header and footer for the layout) and a "style.php" file (which contains and can include other files that contain the CSS for the layout). Each layout has it's own folder in theme/layouts and you can switch between them using a combo box in the Hatbar. Layouts 6.2 and 4.5 have been modified to work with new Layout 7 features such as AJAX, and they should be relatively free of bugs. Layout 3 has not yet been transferred because since it is pre-The New Four Island, it will be very difficult to do so. This changeset requires manual external code changes: * The line below must be added above the functions.php include in The Fourm's funnctions.php require('/svr/www/hatkirby/fourisland/main/includes/session.php'); * The block of Four Island code in The Fourm's page_header() function should be replaced with: global $fi_pagetitle; $fi_pagetitle = $page_title; ob_start(); * The block of Four Island code in The Fourm's page_footer() function should be replaced with: global $fi_pagetitle; $content = ob_get_contents(); ob_end_clean(); $noRightbar = 1; $onFourm = 1; $pageCategory = 'fourm'; if ($fi_pagetitle == 'Index page') { $title = 'The Fourm'; } else if (strpos($fi_pagetitle, 'View topic') !== FALSE) { $title = str_replace('View topic - ', 'Topic: ', $fi_pagetitle) . ' - The Fourm'; } else if (strpos($fi_pagetitle, 'View forum') !== FALSE) { $title = str_replace('View forum - ', 'Fourm: ', $fi_pagetitle) . ' - The Fourm'; } else if (strpos($fi_pagetitle, 'Viewing profile') !== FALSE) { $title = str_replace('Viewing profile - ', 'Member: ', $fi_pagetitle) . ' - The Fourm'; } else { $title = $fi_pagetitle . ' - The Fourm'; } if ($_GET['view'] != 'print') { include('/svr/www/hatkirby/fourisland/main/includes/layout.php'); } else { echo $content; } Closes #117 --- index.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index 77b4944..d110743 100755 --- a/index.php +++ b/index.php @@ -25,7 +25,7 @@ if (preg_match('|MSIE ([0-9].[0-9]{1,2})|', $_SERVER['HTTP_USER_AGENT'], $matche header('Content-type: text/html'); $usingIE = true; } else { - header('Content-type: application/xhtml+xml'); +// header('Content-type: application/xhtml+xml'); } header('X-Pingback: http://fourisland.com/xmlrpc.php'); @@ -40,7 +40,13 @@ include('includes/xmlrpc/xmlrpc.inc'); include('includes/specialdates.php'); include('includes/functions.php'); include('includes/hits.php'); -include('includes/updatePending.php'); +include('includes/updatePending.php'); + +if (strpos($_SERVER['REQUEST_URI'],'index.php')) +{ + header('Location: ' . getRewriteURL()); + exit; +} ob_start(); @@ -53,13 +59,9 @@ if (file_exists('pages/' . $pageName . '.php')) generateError('404'); } -$doc = ob_get_contents(); +$content = ob_get_contents(); ob_end_clean(); -$doc = stripslashes($doc); - -include('includes/header.php'); -echo($doc); -include('includes/footer.php'); +include('includes/layout.php'); ?> -- cgit 1.4.1