国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

53 Zeilen
1.6KB

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