202 lines
6.0 KiB
PHP
202 lines
6.0 KiB
PHP
<?php
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
// ==================================================
|
|
// Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
|
|
// Please see http://pandorafms.org for full contribution list
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public License
|
|
// as published by the Free Software Foundation; version 2
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
/**
|
|
* @package Include
|
|
* @subpackage Menu
|
|
*/
|
|
|
|
/**
|
|
* Prints a complete menu structure.
|
|
*
|
|
* @param array Menu structure to print.
|
|
*/
|
|
function menu_print_menu (&$menu) {
|
|
global $config;
|
|
static $idcounter = 0;
|
|
|
|
echo '<div class="menu">';
|
|
|
|
$sec = (string) get_parameter ('sec');
|
|
$sec2 = (string) get_parameter ('sec2');
|
|
|
|
$allsec2 = explode('sec2=', $_SERVER['REQUEST_URI']);
|
|
$allsec2 = $allsec2[1];
|
|
|
|
echo '<ul'.(isset ($menu['class']) ? ' class="'.$menu['class'].'"' : '').'>';
|
|
|
|
foreach ($menu as $mainsec => $main) {
|
|
$extensionInMenuParameter = (string) get_parameter ('extension_in_menu','');
|
|
|
|
$showSubsection = true;
|
|
if ($extensionInMenuParameter != '') {
|
|
if ($extensionInMenuParameter == $mainsec)
|
|
$showSubsection = true;
|
|
else
|
|
$showSubsection = false;
|
|
}
|
|
|
|
if ($mainsec == 'class')
|
|
continue;
|
|
|
|
if (! isset ($main['id'])) {
|
|
$id = 'menu_'.++$idcounter;
|
|
} else {
|
|
$id = $main['id'];
|
|
}
|
|
|
|
$submenu = false;
|
|
$classes = array ('menu_icon');
|
|
if (isset ($main["sub"])) {
|
|
$classes[] = 'has_submenu';
|
|
$submenu = true;
|
|
}
|
|
if (!isset ($main["refr"]))
|
|
$main["refr"] = 0;
|
|
|
|
if (($sec == $mainsec) && ($showSubsection)) {
|
|
$classes[] = 'selected';
|
|
} else {
|
|
$classes[] = 'not_selected';
|
|
if ($extensionInMenuParameter == $mainsec)
|
|
$classes[] = 'selected';
|
|
}
|
|
|
|
$output = '';
|
|
|
|
if (! $submenu) {
|
|
$main["sub"] = array (); //Empty array won't go through foreach
|
|
}
|
|
|
|
$submenu_output = '';
|
|
$selected = false;
|
|
$visible = false;
|
|
foreach ($main["sub"] as $subsec2 => $sub) {
|
|
$subsec2 = io_safe_output($subsec2);
|
|
// Choose valid suboptions (sec2)
|
|
if (enterprise_hook ('enterprise_acl', array ($config['id_user'], $mainsec, $subsec2)) == false){
|
|
continue;
|
|
}
|
|
|
|
//Set class
|
|
if (($sec2 == $subsec2 || $allsec2 == $subsec2) && isset ($sub[$subsec2]["options"])
|
|
&& (get_parameter_get ($sub[$subsec2]["options"]["name"]) == $sub[$subsec2]["options"]["value"])) {
|
|
//If the subclass is selected and there are options and that options value is true
|
|
$class = 'submenu_selected';
|
|
$selected = true;
|
|
$visible = true;
|
|
}
|
|
elseif (($sec2 == $subsec2 || $allsec2 == $subsec2) && !isset ($sub[$subsec2]["options"])) {
|
|
$class = 'submenu_selected';
|
|
$selected = true;
|
|
|
|
$hasExtensions = (array_key_exists('hasExtensions',$main)) ? $main['hasExtensions'] : false;
|
|
if (($extensionInMenuParameter != '') && ($hasExtensions))
|
|
$visible = true;
|
|
else
|
|
$visible = false;
|
|
}
|
|
else {
|
|
//Else it's not selected
|
|
$class = 'submenu_not_selected';
|
|
}
|
|
|
|
if (! isset ($sub["refr"])) {
|
|
$sub["refr"] = 0;
|
|
}
|
|
|
|
if (isset ($sub["type"]) && $sub["type"] == "direct") {
|
|
//This is an external link
|
|
$submenu_output .= '<li class="'.$class.'"><a href="'.$subsec2.'">'.$sub["text"]."</a></li>";
|
|
}
|
|
else {
|
|
//This is an internal link
|
|
if (isset ($sub[$subsec2]["options"])) {
|
|
$link_add = "&".$sub[$subsec2]["options"]["name"]."=".$sub[$subsec2]["options"]["value"];
|
|
}
|
|
else {
|
|
$link_add = "";
|
|
}
|
|
|
|
$submenu_output .= '<li'.($class ? ' class="'.$class.'"' : '').'>';
|
|
|
|
//Ini Add icon extension
|
|
$secExtension = null;
|
|
if (array_key_exists('extension',$sub)) $secExtensionBool = $sub["extension"];
|
|
else $secExtensionBool = false;
|
|
|
|
if ($secExtensionBool) {
|
|
$imageIcon = 'images/extensions.png';
|
|
if (strlen($sub["icon"]) > 0)
|
|
$imageIcon ='extensions/'.$sub["icon"];
|
|
|
|
$submenu_output .= '<div style="background: url('.$imageIcon.') no-repeat; width: 16px; height: 16px; float: left; margin: 5px 0px 0px 3px;"> </div>';
|
|
}
|
|
|
|
|
|
$secExtension = null;
|
|
if (array_key_exists('sec',$sub)) $secExtension = $sub["sec"];
|
|
if (strlen($secExtension) > 0) {
|
|
$secUrl = $secExtension;
|
|
$extensionInMenu = 'extension_in_menu='.$mainsec.'&';
|
|
}
|
|
else {
|
|
$secUrl = $mainsec;
|
|
$extensionInMenu = '';
|
|
}
|
|
|
|
if (isset ($sub["title"])) {
|
|
$title = ' title="' . $sub["title"] . ' "';
|
|
} else {
|
|
$title = '';
|
|
}
|
|
$submenu_output .= '<a href="index.php?'.$extensionInMenu.'sec='.$secUrl.'&sec2='.$subsec2.($main["refr"] ? '&refr=0' : '').$link_add.'"' . $title . '>'.$sub["text"].'</a>';
|
|
$submenu_output .= '</li>';
|
|
}
|
|
}
|
|
|
|
// Choose valid section (sec)
|
|
|
|
if (enterprise_hook ('enterprise_acl', array ($config['id_user'], $mainsec, $main["sec2"])) == false){
|
|
continue;
|
|
}
|
|
|
|
//Print out the first level
|
|
$output .= '<li class="'.implode (" ", $classes).'" id="icon_'.$id.'">';
|
|
$output .= '<a href="index.php?sec='.$mainsec.'&sec2='.$main["sec2"].($main["refr"] ? '&refr='.$main["refr"] : '').'">'.$main["text"].'</a>' . html_print_image("include/styles/images/toggle.png", true, array("class" => "toggle", "alt" => "toogle"));
|
|
if ($submenu_output != '') {
|
|
//WARNING: IN ORDER TO MODIFY THE VISIBILITY OF MENU'S AND SUBMENU'S (eg. with cookies) YOU HAVE TO ADD TO THIS ELSEIF. DON'T MODIFY THE CSS
|
|
if ($visible || in_array ("selected", $classes)) {
|
|
$visible = true;
|
|
}
|
|
if (!$showSubsection) {
|
|
$visible = false;
|
|
}
|
|
|
|
$output .= '<ul class="submenu'.($visible ? '' : ' invisible').'">';
|
|
$output .= $submenu_output;
|
|
$output .= '</ul>';
|
|
}
|
|
$output .= '</li>';
|
|
echo $output;
|
|
}
|
|
echo '</ul>';
|
|
//Invisible UL for adding border-top
|
|
echo '<ul style="height: 0px;"><li> </li></ul></div>';
|
|
}
|
|
|
|
?>
|