<?php
/*
Member Menu
(c) 2004-2007 by "Oleg Savchuk" <hide@address.com>
part of phpProjectMaster project
http://phpprojmaster.sourceforge.net
The contents of this file are subject to the GNU GENERAL PUBLIC LICENSE
http://www.gnu.org/copyleft/gpl.html
*/
session_start();
require_once "../inc/sitelib.php";
require_once "../inc/user.php";
global_init();
$CGI_ACTIONS=array(
'' => 'show_menu',
);
###########
// check_access(100);
go_action();
exit;
###########################################################################
# show main menu
#
function show_menu(){
# $hUSER=get_user($_SESSION["u_id"]);
$ps=array(
'SITE_VERSION' => $GLOBALS['SITE_VERSION'],
'is_hide_menu_home' => 1,
);
$ps=array_merge($ps, get_userinfo());
parse_page("/admin/mainmenu", $GLOBALS['PAGE_TPL_ADMIN'], $ps);
}
?>