国内流行的内容管理系统(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.

51 lines
1.4KB

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