AddUserlist.php 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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,"userlist");
  20. $enews=ehtmlspecialchars($_GET['enews']);
  21. $cid=(int)$_GET['cid'];
  22. $url="<a href=ListUserlist.php".$ecms_hashur['whehref'].">管理自定义信息列表</a> &gt; 增加自定义信息列表";
  23. $r[jsfilename]="../../list/";
  24. $r[filetype]=".html";
  25. $r[filepath]="../../a/";
  26. $r[totalsql]="select count(*) as total from [!db.pre!]ecms_news";
  27. $r[listsql]="select * from [!db.pre!]ecms_news order by id desc";
  28. $r[maxnum]=0;
  29. $r[lencord]=25;
  30. //复制
  31. if($enews=="AddUserlist"&&$_GET['docopy'])
  32. {
  33. $listid=(int)$_GET['listid'];
  34. $r=$empire->fetch1("select * from {$dbtbpre}enewsuserlist where listid='$listid'");
  35. $url="<a href=ListUserlist.php".$ecms_hashur['whehref'].">管理自定义信息列表</a> &gt; 复制自定义信息列表:<b>".$r[listname]."</b>";
  36. }
  37. //修改
  38. if($enews=="EditUserlist")
  39. {
  40. $listid=(int)$_GET['listid'];
  41. $r=$empire->fetch1("select * from {$dbtbpre}enewsuserlist where listid='$listid'");
  42. $url="<a href=ListUserlist.php".$ecms_hashur['whehref'].">管理自定义信息列表</a> -&gt; 修改自定义信息列表:<b>".$r[listname]."</b>";
  43. }
  44. //列表模板
  45. $msql=$empire->query("select mid,mname from {$dbtbpre}enewsmod order by myorder,mid");
  46. while($mr=$empire->fetch($msql))
  47. {
  48. $listtemp_options.="<option value=0 style='background:#99C4E3'>".$mr[mname]."</option>";
  49. $l_sql=$empire->query("select tempid,tempname from ".GetTemptb("enewslisttemp")." where modid='$mr[mid]'");
  50. while($l_r=$empire->fetch($l_sql))
  51. {
  52. if($l_r[tempid]==$r[listtempid])
  53. {$l_d=" selected";}
  54. else
  55. {$l_d="";}
  56. $listtemp_options.="<option value=".$l_r[tempid].$l_d."> |-".$l_r[tempname]."</option>";
  57. }
  58. }
  59. //当前使用的模板组
  60. $thegid=GetDoTempGid();
  61. //分类
  62. $cstr="";
  63. $csql=$empire->query("select classid,classname from {$dbtbpre}enewsuserlistclass order by classid");
  64. while($cr=$empire->fetch($csql))
  65. {
  66. $select="";
  67. if($cr[classid]==$r[classid])
  68. {
  69. $select=" selected";
  70. }
  71. $cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  72. }
  73. db_close();
  74. $empire=null;
  75. ?>
  76. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  77. <html>
  78. <head>
  79. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  80. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  81. <title>自定义信息列表</title>
  82. </head>
  83. <body>
  84. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  85. <tr>
  86. <td>位置:<?=$url?></td>
  87. </tr>
  88. </table>
  89. <form name="form1" method="post" action="ListUserlist.php">
  90. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  91. <?=$ecms_hashur['form']?>
  92. <tr class="header">
  93. <td height="25" colspan="2">增加自定义信息列表
  94. <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="listid" type="hidden" id="listid" value="<?=$listid?>">
  95. <input name="oldfilepath" type="hidden" id="oldfilepath" value="<?=$r[filepath]?>">
  96. <input name="oldfiletype" type="hidden" id="oldfiletype" value="<?=$r[filetype]?>">
  97. <input name="cid" type="hidden" id="cid" value="<?=$cid?>"></td>
  98. </tr>
  99. <tr bgcolor="#FFFFFF">
  100. <td width="18%" height="25">列表名称:</td>
  101. <td width="82%" height="25"> <input name="listname" type="text" id="listname" value="<?=$r[listname]?>" size="42"> </td>
  102. </tr>
  103. <tr bgcolor="#FFFFFF">
  104. <td height="25">所属分类:</td>
  105. <td height="25"><select name="classid" id="classid">
  106. <option value="0">不隶属于任何类别</option>
  107. <?=$cstr?>
  108. </select>
  109. <input type="button" name="Submit6222322" value="管理分类" onclick="window.open('UserlistClass.php<?=$ecms_hashur['whehref']?>');"></td>
  110. </tr>
  111. <tr bgcolor="#FFFFFF">
  112. <td height="25">网页标题:</td>
  113. <td height="25"><input name="pagetitle" type="text" id="pagetitle" value="<?=$r[pagetitle]?>" size="42"></td>
  114. </tr>
  115. <tr bgcolor="#FFFFFF">
  116. <td height="25">网页关键词:</td>
  117. <td height="25"><input name="pagekeywords" type="text" id="pagekeywords" value="<?=$r[pagekeywords]?>" size="42"></td>
  118. </tr>
  119. <tr bgcolor="#FFFFFF">
  120. <td height="25">网页描述:</td>
  121. <td height="25"><input name="pagedescription" type="text" id="pagedescription" value="<?=$r[pagedescription]?>" size="42"></td>
  122. </tr>
  123. <tr bgcolor="#FFFFFF">
  124. <td height="25">文件存放目录:</td>
  125. <td height="25"><input name="filepath" type="text" id="filepath" value="<?=$r[filepath]?>" size="42">
  126. <input type="button" name="Submit4" value="选择目录" onclick="window.open('../file/ChangePath.php?<?=$ecms_hashur['ehref']?>&returnform=opener.document.form1.filepath.value','','width=400,height=500,scrollbars=yes');">
  127. <font color="#666666">(如:<strong>&quot;../../a/</strong>&quot;表示根目录下的a目录)</font></td>
  128. </tr>
  129. <tr bgcolor="#FFFFFF">
  130. <td height="25">文件扩展名:</td>
  131. <td height="25"><input name="filetype" type="text" id="filetype" value="<?=$r[filetype]?>" size="12">
  132. <select name="select" onchange="document.form1.filetype.value=this.value">
  133. <option value=".html">扩展名</option>
  134. <option value=".html">.html</option>
  135. <option value=".htm">.htm</option>
  136. <option value=".php">.php</option>
  137. <option value=".shtml">.shtml</option>
  138. </select>
  139. (如.html,.xml,.htm等) </td>
  140. </tr>
  141. <tr bgcolor="#FFFFFF">
  142. <td rowspan="4">查询SQL语句:</td>
  143. <td height="25">统计记录:
  144. <input name="totalsql" type="text" id="totalsql" value="<?=ehtmlspecialchars(stripSlashes($r[totalsql]))?>" size="72"></td>
  145. </tr>
  146. <tr bgcolor="#FFFFFF">
  147. <td height="25"><font color="#666666">(如:select count(*) as total from phome_ecms_news
  148. where classid=1)</font></td>
  149. </tr>
  150. <tr bgcolor="#FFFFFF">
  151. <td height="25">查询记录:
  152. <input name="listsql" type="text" id="listsql" value="<?=ehtmlspecialchars(stripSlashes($r[listsql]))?>" size="72"></td>
  153. </tr>
  154. <tr bgcolor="#FFFFFF">
  155. <td height="25"><font color="#666666">(如:select * from phome_ecms_news where
  156. classid=1 order by id desc)</font></td>
  157. </tr>
  158. <tr bgcolor="#FFFFFF">
  159. <td height="26">查询总条数:</td>
  160. <td height="26"><input name="maxnum" type="text" id="lencord" value="<?=$r[maxnum]?>" size="6">
  161. 条信息(0为不限制)</td>
  162. </tr>
  163. <tr bgcolor="#FFFFFF">
  164. <td height="26">每页显示:</td>
  165. <td height="26"> <input name="lencord" type="text" id="jsname3" value="<?=$r[lencord]?>" size="6">
  166. 条信息</td>
  167. </tr>
  168. <tr bgcolor="#FFFFFF">
  169. <td height="25">使用列表模板:</td>
  170. <td height="25"><select name="listtempid" id="listtempid">
  171. <?=$listtemp_options?>
  172. </select> <input type="button" name="Submit622" value="管理列表模板" onclick="window.open('../template/ListListtemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');"></td>
  173. </tr>
  174. <tr bgcolor="#FFFFFF">
  175. <td height="25">&nbsp;</td>
  176. <td height="25"> <input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  177. </tr>
  178. <tr bgcolor="#FFFFFF">
  179. <td height="25">&nbsp;</td>
  180. <td height="25">表前缀可用“<strong>[!db.pre!]</strong>”表示</td>
  181. </tr>
  182. </table>
  183. </form>
  184. </body>
  185. </html>