ListTable.php 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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,"table");
  20. $url="<a href='ListTable.php".$ecms_hashur['whehref']."'>管理数据表</a>";
  21. $sql=$empire->query("select tid,tname,tbname,isdefault from {$dbtbpre}enewstable order by tid");
  22. ?>
  23. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  24. <html>
  25. <head>
  26. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  27. <title>管理数据表</title>
  28. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  29. </head>
  30. <body>
  31. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  32. <tr>
  33. <td width="50%">位置:
  34. <?=$url?>
  35. </td>
  36. <td><div align="right" class="emenubutton">
  37. <input type="button" name="Submit" value="增加数据表" onclick="self.location.href='AddTable.php?enews=AddTable<?=$ecms_hashur['ehref']?>';">&nbsp;&nbsp;
  38. <input type="button" name="Submit" value="导入系统模型" onclick="self.location.href='LoadInM.php<?=$ecms_hashur['whehref']?>';">
  39. </div></td>
  40. </tr>
  41. </table>
  42. <br>
  43. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  44. <tr class="header">
  45. <td width="5%" height="25"><div align="center">ID</div></td>
  46. <td width="35%" height="25"><div align="center">表名称</div></td>
  47. <td width="32%"><div align="center">管理</div></td>
  48. <td width="28%" height="25"><div align="center">操作</div></td>
  49. </tr>
  50. <?php
  51. while($r=$empire->fetch($sql))
  52. {
  53. //默认表
  54. if($r[isdefault])
  55. {
  56. $bgcolor="#DBEAF5";
  57. $movejs='';
  58. }
  59. else
  60. {
  61. $bgcolor="#ffffff";
  62. $movejs=' onmouseout="this.style.backgroundColor=\'#ffffff\'" onmouseover="this.style.backgroundColor=\'#C3EFFF\'"';
  63. }
  64. ?>
  65. <tr bgcolor="<?=$bgcolor?>"<?=$movejs?>>
  66. <td height="32"><div align="center">
  67. <?=$r[tid]?>
  68. </div></td>
  69. <td height="25">
  70. <?=$r[tname]?>
  71. &nbsp;( <?=$dbtbpre?>ecms_<b><?=$r[tbname]?></b> ) </td>
  72. <td><div align="center">[<a href="#ecms" onclick="window.open('ListF.php?tid=<?=$r[tid]?>&tbname=<?=$r[tbname]?><?=$ecms_hashur['ehref']?>','','width=700,height=560,scrollbars=yes,top=70,left=100,resizable=yes');"><strong>管理字段</strong></a>] &nbsp;
  73. [<a href="#ecms" onclick="window.open('ListM.php?tid=<?=$r[tid]?>&tbname=<?=$r[tbname]?><?=$ecms_hashur['ehref']?>','','width=860,height=560,scrollbars=yes,top=70,left=100,resizable=yes');"><strong>管理系统模型</strong></a>] &nbsp;
  74. [<a href="#ecms" onclick="window.open('ListDataTable.php?tid=<?=$r[tid]?>&tbname=<?=$r[tbname]?><?=$ecms_hashur['ehref']?>','','width=700,height=560,scrollbars=yes,top=70,left=100,resizable=yes');"><strong>管理分表</strong></a>]</div></td>
  75. <td height="25"><div align="center"> [<a href="../ecmsmod.php?enews=DefaultTable&tid=<?=$r[tid]?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要默认?');"><strong>设为默认表</strong></a>] &nbsp;
  76. [<a href="CopyTable.php?enews=CopyNewTable&tid=<?=$r[tid]?><?=$ecms_hashur['ehref']?>"><strong>复制</strong></a>] &nbsp;
  77. [<a href="AddTable.php?enews=EditTable&tid=<?=$r[tid]?><?=$ecms_hashur['ehref']?>"><strong>修改</strong></a>] &nbsp;
  78. [<a href="../ecmsmod.php?enews=DelTable&tid=<?=$r[tid]?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');"><strong>删除</strong></a>]
  79. </div></td>
  80. </tr>
  81. <?php
  82. }
  83. ?>
  84. </table>
  85. </body>
  86. </html>
  87. <?php
  88. db_close();
  89. $empire=null;
  90. ?>