fastmenu.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. ?>
  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  8. <html>
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  11. <title>菜单</title>
  12. <link href="../../../data/menu/menu.css" rel="stylesheet" type="text/css">
  13. <script src="../../../data/menu/menu.js" type="text/javascript"></script>
  14. <SCRIPT lanuage="JScript">
  15. function tourl(url){
  16. parent.main.location.href=url;
  17. }
  18. </SCRIPT>
  19. </head>
  20. <body onLoad="initialize()">
  21. <table border='0' cellspacing='0' cellpadding='0'>
  22. <tr height=20>
  23. <td id="home"><img src="../../../data/images/homepage.gif" border=0></td>
  24. <td><b>常用操作</b></td>
  25. </tr>
  26. </table>
  27. <table border='0' cellspacing='0' cellpadding='0'>
  28. <?php
  29. $b=0;
  30. //自定义常用操作菜单
  31. $menucsql=$empire->query("select classid,classname from {$dbtbpre}enewsmenuclass where classtype=1 and (groupids='' or groupids like '%,".intval($lur[groupid]).",%') order by myorder,classid");
  32. while($menucr=$empire->fetch($menucsql))
  33. {
  34. $menujsvar='diymenu'.$menucr['classid'];
  35. $b=1;
  36. ?>
  37. <tr>
  38. <td id="pr<?=$menujsvar?>" class="menu1" onclick="chengstate('<?=$menujsvar?>')">
  39. <a onmouseout="this.style.fontWeight=''" onmouseover="this.style.fontWeight='bold'">
  40. <?=$menucr['classname']?>
  41. </a> </td>
  42. </tr>
  43. <tr id="item<?=$menujsvar?>" style="display:none">
  44. <td class="list"> <table border='0' cellspacing='0' cellpadding='0'>
  45. <?php
  46. $menusql=$empire->query("select menuid,menuname,menuurl,addhash from {$dbtbpre}enewsmenu where classid='$menucr[classid]' order by myorder,menuid");
  47. while($menur=$empire->fetch($menusql))
  48. {
  49. if(!(strstr($menur['menuurl'],'://')||substr($menur['menuurl'],0,1)=='/'))
  50. {
  51. $menur['menuurl']='../../'.$menur['menuurl'];
  52. }
  53. $menu_ecmshash='';
  54. if($menur['addhash'])
  55. {
  56. if(strstr($menur['menuurl'],'?'))
  57. {
  58. $menu_ecmshash=$menur['addhash']==2?$ecms_hashur['href']:$ecms_hashur['ehref'];
  59. }
  60. else
  61. {
  62. $menu_ecmshash=$menur['addhash']==2?$ecms_hashur['whhref']:$ecms_hashur['whehref'];
  63. }
  64. $menur['menuurl'].=$menu_ecmshash;
  65. }
  66. ?>
  67. <tr>
  68. <td class="file"> <a href="<?=$menur['menuurl']?>" target="main" onmouseout="this.style.fontWeight=''" onmouseover="this.style.fontWeight='bold'">
  69. <?=$menur['menuname']?>
  70. </a> </td>
  71. </tr>
  72. <?php
  73. }
  74. ?>
  75. </table></td>
  76. </tr>
  77. <?php
  78. }
  79. //没菜单
  80. if(!$b)
  81. {
  82. $notrecordword="您还未添加常用菜单,<br><a href='../../other/MenuClass.php".$ecms_hashur['whehref']."' target='main'><u><b>点击这里</b></u></a>进行添加操作";
  83. echo"<tr><td>$notrecordword</td></tr>";
  84. }
  85. ?>
  86. </table>
  87. </body>
  88. </html>