index_menu_module.php
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
* 快捷发布菜单
*
* @version $Id: file_pic_view.php 1 23:44 2011/2/16 tianya $
* @package DedeCMS.Administrator
* @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
* @license http://help.dedecms.com/usersguide/license.html
* @link http://www.dedecms.com
*/
require(dirname(__FILE__)."/config.php");
if($cuserLogin->adminStyle!='dedecms')
{
header("location:index_menu.php?openitem=100");
exit();
}
require(DEDEADMIN.'/inc/inc_menu_module.php');
require(DEDEADMIN.'/inc/inc_menu_func.php');
?>
<html>
<head>
<title>DedeCms menu</title>
<link rel="stylesheet" href="images/base.css" type="text/css" />
<link rel="stylesheet" href="images/menuold.css" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>" />
<base target="main" />
</head>
<script language="javascript">
function showHide(objname)
{
var obj = document.getElementById(objname);
if(obj.style.display == 'block' || obj.style.display =='') obj.style.display = 'none';
else obj.style.display = 'block';
}
</script>
<base target="main">
<body leftmargin="0" topmargin="0" target="main">
<table width='100%' height="100%" border='0' cellspacing='0' cellpadding='0'>
<tr>
<td style='padding-left:3px;padding-top:8px' valign="top">
<?php
GetMenus($cuserLogin->getUserRank(),'module');
?>
</td>
</tr>
</table>
<table width="120" border="0" align="center" cellpadding="0" cellspacing="0">
<tr><td height="6"></td></tr>
</table>
</body>
</html>