0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
[
Home
]
File: tiki-admin_layout.php
<?php // $Id: /cvsroot/tikiwiki/tiki/tiki-admin_layout.php,v 1.20 2007-10-12 07:55:24 nyloth Exp $ // Copyright (c) 2002-2007, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // Initialization require_once ('tiki-setup.php'); if ($prefs['layout_section'] != 'y') { $smarty->assign('msg', tra("This feature is disabled").": layout_section"); $smarty->display("error.tpl"); die; } if ($tiki_p_admin != 'y') { $smarty->assign('errortype', 401); $smarty->assign('msg', tra("You do not have permission to use this feature")); $smarty->display("error.tpl"); die; } foreach ($sections_enabled as $section=>$data) { if (isset($_REQUEST["${section}_layout"])) { check_ticket('admin-layout'); if (isset($_REQUEST["${section}_left_column"]) && $_REQUEST["${section}_left_column"] == "on") { $tikilib->set_preference("${section}_left_column", 'y'); } else { $tikilib->set_preference("${section}_left_column", 'n'); } if (isset($_REQUEST["${section}_right_column"]) && $_REQUEST["${section}_right_column"] == "on") { $tikilib->set_preference("${section}_right_column", 'y'); } else { $tikilib->set_preference("${section}_right_column", 'n'); } if (isset($_REQUEST["${section}_top_bar"]) && $_REQUEST["${section}_top_bar"] == "on") { $tikilib->set_preference("${section}_top_bar", 'y'); } else { $tikilib->set_preference("${section}_top_bar", 'n'); } if (isset($_REQUEST["${section}_bot_bar"]) && $_REQUEST["${section}_bot_bar"] == "on") { $tikilib->set_preference("${section}_bot_bar", 'y'); } else { $tikilib->set_preference("${section}_bot_bar", 'n'); } } } $sections_smt = array(); $temp_max = count($sections_enabled); $needed_prefs = array(); $needed_elements = array('left_column', 'right_column', 'top_bar', 'bot_bar'); foreach ( $sections_enabled as $sec => $dat ) foreach ( $needed_elements as $elmt ) $needed_prefs[$sec.'_'.$elmt] = 'y'; $tikilib->get_preferences($needed_elements, true, true); foreach ( $sections_enabled as $sec => $dat ) { $aux["name"] = $sec; foreach ( $needed_elements as $elmt ) $aux[$elmt] = ${$sec.'_'.$elmt}; $sections_smt[] = $aux; } $smarty->assign('sections', $sections_smt); ask_ticket('admin-layout'); // disallow robots to index page: $smarty->assign('metatag_robots', 'NOINDEX, NOFOLLOW'); // Display the template $smarty->assign('mid', 'tiki-admin_layout.tpl'); $smarty->display("tiki.tpl"); ?>