0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
[
Home
]
File: tiki-admin_menus.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // 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. // $Id: tiki-admin_menus.php 33195 2011-03-02 17:43:40Z changi67 $ require_once ('tiki-setup.php'); include_once ('lib/menubuilder/menulib.php'); $auto_query_args = array( 'offset', 'sort_mode', 'menuId' ); $access->check_permission(array('tiki_p_edit_menu')); if (!isset($_REQUEST["menuId"])) { $_REQUEST["menuId"] = 0; } $smarty->assign('menuId', $_REQUEST["menuId"]); if ($_REQUEST["menuId"]) { $info = $tikilib->get_menu($_REQUEST["menuId"]); } else { $info = array(); $info["name"] = ''; $info["description"] = ''; $info["type"] = 'd'; $info['icon'] = null; $info['use_items_icons'] = 'n'; } $smarty->assign_by_ref('info', $info); if (isset($_REQUEST["remove"])) { $access->check_authenticity( tra('Are you sure you want to delete menu id:') . ' ' . $_REQUEST['remove'] ); $menulib->remove_menu($_REQUEST["remove"]); $smarty->clear_cache('tiki-user_menu.tpl', $_REQUEST['menuId']); } if (isset($_REQUEST["save"])) { check_ticket('admin-menus'); if (!isset($_REQUEST['icon'])) $_REQUEST['icon'] = null; $_REQUEST['use_items_icons'] = (isset($_REQUEST['use_items_icons']) && $_REQUEST['use_items_icons'] == 'on') ? 'y' : 'n'; $menulib->replace_menu($_REQUEST['menuId'], $_REQUEST['name'], $_REQUEST['description'], $_REQUEST['type'], $_REQUEST['icon'], $_REQUEST['use_items_icons']); $smarty->clear_cache('tiki-user_menu.tpl', $_REQUEST['menuId']); $_REQUEST["menuId"] = 0; $smarty->assign('menuId', 0); $smarty->assign('info', array( 'name' => '', 'description' => '', 'type' => 'd', 'icon' => null, 'use_items_icons' => 'n' )); } if (isset($_REQUEST['clone']) && $_REQUEST['menuId'] > 0) { check_ticket('admin-menus'); $menulib->clone_menu($_REQUEST["menuId"]); } if (isset($_REQUEST['reset'])) { $access->check_authenticity(tra('Are you sure you want to reset the Application Menu to the current system default?')); $menulib->reset_app_menu(); } if (!isset($_REQUEST["sort_mode"])) { $sort_mode = 'name_desc'; } else { $sort_mode = $_REQUEST["sort_mode"]; } $smarty->assign_by_ref('sort_mode', $sort_mode); if (!isset($_REQUEST["offset"])) { $offset = 0; } else { $offset = $_REQUEST["offset"]; } $smarty->assign_by_ref('offset', $offset); if (isset($_REQUEST["find"])) { $find = $_REQUEST["find"]; } else { $find = ''; } $smarty->assign('find', $find); $channels = $menulib->list_menus($offset, $maxRecords, $sort_mode, $find); foreach($channels['data'] as $i => $channel) { if ($userlib->object_has_one_permission($channel['menuId'], 'menus')) { $channels['data'][$i]['individual'] = 'y'; } } $smarty->assign_by_ref('cant', $channels['cant']); $smarty->assign_by_ref('channels', $channels["data"]); ask_ticket('admin-menus'); // disallow robots to index page: $smarty->assign('metatag_robots', 'NOINDEX, NOFOLLOW'); // Display the template $smarty->assign('mid', 'tiki-admin_menus.tpl'); $smarty->display("tiki.tpl");