ListM.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"m");
  20. $enews=$_GET['enews'];
  21. if($enews)
  22. {
  23. hCheckEcmsRHash();
  24. }
  25. //导出模型
  26. if($enews=="LoadOutMod")
  27. {
  28. include("../../class/moddofun.php");
  29. LoadOutMod($_GET,$logininid,$loginin);
  30. }
  31. $tid=(int)$_GET['tid'];
  32. $tbname=RepPostVar($_GET['tbname']);
  33. if(!$tid||!$tbname)
  34. {
  35. printerror("ErrorUrl","history.go(-1)");
  36. }
  37. $url="数据表:[".$dbtbpre."ecms_".$tbname."]&nbsp;>&nbsp;<a href=ListM.php?tid=$tid&tbname=$tbname".$ecms_hashur['ehref'].">管理系统模型</a>";
  38. $sql=$empire->query("select * from {$dbtbpre}enewsmod where tid='$tid' order by myorder,mid");
  39. ?>
  40. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  41. <html>
  42. <head>
  43. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  44. <title>管理系统模型</title>
  45. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  46. </head>
  47. <body>
  48. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  49. <tr>
  50. <td>位置:<?=$url?></td>
  51. </tr>
  52. </table>
  53. <br>
  54. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  55. <tr>
  56. <td class="emenubutton"><input type="button" name="Submit2" value="增加系统模型" onclick="self.location.href='AddM.php?enews=AddM&tid=<?=$tid?>&tbname=<?=$tbname?><?=$ecms_hashur['ehref']?>';">
  57. &nbsp;&nbsp;&nbsp;
  58. <input type="button" name="Submit22" value="导入系统模型" onclick="window.open('LoadInM.php<?=$ecms_hashur['whehref']?>','','width=520,height=300,scrollbars=yes,top=130,left=120');"></td>
  59. </tr>
  60. </table>
  61. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  62. <tr class="header">
  63. <td width="5%" height="25"><div align="center">ID</div></td>
  64. <td width="33%" height="25"><div align="center">模型名称</div></td>
  65. <td width="7%"><div align="center">启用</div></td>
  66. <td width="55%" height="25"><div align="center">操作</div></td>
  67. </tr>
  68. <?php
  69. while($r=$empire->fetch($sql))
  70. {
  71. //默认
  72. $defbgcolor='#ffffff';
  73. $movejs=' onmouseout="this.style.backgroundColor=\'#ffffff\'" onmouseover="this.style.backgroundColor=\'#C3EFFF\'"';
  74. if($r[isdefault])
  75. {
  76. $defbgcolor='#DBEAF5';
  77. $movejs='';
  78. }
  79. $do="[<a href='../../DoInfo/ChangeClass.php?mid=".$r[mid]."' target=_blank>投稿地址</a>]&nbsp;&nbsp;[<a href='AddM.php?tid=$tid&tbname=$tbname&enews=AddM&mid=".$r[mid].$ecms_hashur['ehref']."&docopy=1'>复制</a>]&nbsp;&nbsp;[<a href='ListM.php?tid=$tid&tbname=$tbname&enews=LoadOutMod&mid=".$r[mid].$ecms_hashur['href']."' onclick=\"return confirm('确认要导出?');\">导出</a>]&nbsp;&nbsp;[<a href='../ecmsmod.php?tid=$tid&tbname=$tbname&enews=DefM&mid=".$r[mid].$ecms_hashur['href']."' onclick=\"return confirm('确认要设置为默认系统模型?');\">设为默认</a>]&nbsp;&nbsp;[<a href='AddM.php?tid=$tid&tbname=$tbname&enews=EditM&mid=".$r[mid].$ecms_hashur['ehref']."'>修改</a>]&nbsp;&nbsp;[<a href='../ecmsmod.php?tid=$tid&tbname=$tbname&enews=DelM&mid=".$r[mid].$ecms_hashur['href']."' onclick=\"return confirm('确认要删除?');\">删除</a>]";
  80. $usemod=$r[usemod]==0?'是':'<font color="red">否</font>';
  81. ?>
  82. <tr bgcolor="<?=$defbgcolor?>"<?=$movejs?>>
  83. <td height="32"><div align="center">
  84. <?=$r[mid]?>
  85. </div></td>
  86. <td height="25"><div align="center">
  87. <?=$r[mname]?>
  88. </div></td>
  89. <td><div align="center"><?=$usemod?></div></td>
  90. <td height="25"><div align="center">
  91. <?=$do?>
  92. </div></td>
  93. </tr>
  94. <?php
  95. }
  96. ?>
  97. </table>
  98. </body>
  99. </html>
  100. <?php
  101. db_close();
  102. $empire=null;
  103. ?>