国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.5KB

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