ListUserlist.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require "../".LoadLang("pub/fun.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. //验证权限
  20. CheckLevel($logininid,$loginin,$classid,"userlist");
  21. //增加自定义信息列表
  22. function AddUserlist($add,$userid,$username){
  23. global $empire,$dbtbpre;
  24. $cid=(int)$add['cid'];
  25. $listtempid=(int)$add['listtempid'];
  26. $maxnum=(int)$add['maxnum'];
  27. $lencord=(int)$add['lencord'];
  28. if(!$add[listname]||!$listtempid||!$add[listsql]||!$add[totalsql]||!$add[filepath]||!$add[filetype]||!$add[lencord])
  29. {
  30. printerror("EmptyUserListname","history.go(-1)");
  31. }
  32. $query_first=substr($add['totalsql'],0,7);
  33. $query_firstlist=substr($add['listsql'],0,7);
  34. if(!($query_first=="select "||$query_first=="SELECT "||$query_firstlist=="select "||$query_firstlist=="SELECT "))
  35. {
  36. printerror("ListSqlError","history.go(-1)");
  37. }
  38. //验证权限
  39. CheckLevel($userid,$username,$classid,"userlist");
  40. if(empty($add['pagetitle']))
  41. {
  42. $add['pagetitle']=$add['listname'];
  43. }
  44. $add['listname']=hRepPostStr($add['listname'],1);
  45. $add['pagetitle']=AddAddsData(RepPhpAspJspcode($add['pagetitle']));
  46. $add['pagekeywords']=AddAddsData(RepPhpAspJspcode($add['pagekeywords']));
  47. $add['pagedescription']=AddAddsData(RepPhpAspJspcode($add['pagedescription']));
  48. $add[totalsql]=ClearAddsData($add[totalsql]);
  49. $add[listsql]=ClearAddsData($add[listsql]);
  50. $add['classid']=(int)$add['classid'];
  51. $add['filepath']=hRepPostStr($add['filepath'],1);
  52. $add['filetype']=hRepPostStr($add['filetype'],1);
  53. $sql=$empire->query("insert into {$dbtbpre}enewsuserlist(listname,pagetitle,filepath,filetype,totalsql,listsql,maxnum,lencord,listtempid,pagekeywords,pagedescription,classid) values('$add[listname]','".$add[pagetitle]."','$add[filepath]','$add[filetype]','".addslashes($add[totalsql])."','".addslashes($add[listsql])."',$maxnum,$lencord,$listtempid,'".$add[pagekeywords]."','".$add[pagedescription]."','$add[classid]');");
  54. $listid=$empire->lastid();
  55. //刷新列表
  56. $add['listid']=$listid;
  57. ReUserlist($add,"../");
  58. if($sql)
  59. {
  60. //操作日志
  61. insert_dolog("listid=$listid&listname=$add[listname]");
  62. printerror("AddUserlistSuccess","AddUserlist.php?enews=AddUserlist&classid=$cid".hReturnEcmsHashStrHref2(0));
  63. }
  64. else
  65. {
  66. printerror("DbError","history.go(-1)");
  67. }
  68. }
  69. //修改自定义信息列表
  70. function EditUserlist($add,$userid,$username){
  71. global $empire,$dbtbpre;
  72. $cid=(int)$add['cid'];
  73. $listid=(int)$add['listid'];
  74. $listtempid=(int)$add['listtempid'];
  75. $maxnum=(int)$add['maxnum'];
  76. $lencord=(int)$add['lencord'];
  77. if(!$listid||!$add[listname]||!$listtempid||!$add[listsql]||!$add[totalsql]||!$add[filepath]||!$add[filetype]||!$add[lencord])
  78. {
  79. printerror("EmptyUserListname","history.go(-1)");
  80. }
  81. $query_first=substr($add['totalsql'],0,7);
  82. $query_firstlist=substr($add['listsql'],0,7);
  83. if(!($query_first=="select "||$query_first=="SELECT "||$query_firstlist=="select "||$query_firstlist=="SELECT "))
  84. {
  85. printerror("ListSqlError","history.go(-1)");
  86. }
  87. //验证权限
  88. CheckLevel($userid,$username,$classid,"userlist");
  89. /*
  90. //删除旧文件
  91. if(!($add['oldfilepath']<>$add['filepath']||$add['oldfiletype']<>$add['filetype']))
  92. {
  93. DelFiletext($add['oldjsfilename']);
  94. }
  95. */
  96. if(empty($add['pagetitle']))
  97. {
  98. $add['pagetitle']=$add['listname'];
  99. }
  100. $add['listname']=hRepPostStr($add['listname'],1);
  101. $add['pagetitle']=AddAddsData(RepPhpAspJspcode($add['pagetitle']));
  102. $add['pagekeywords']=AddAddsData(RepPhpAspJspcode($add['pagekeywords']));
  103. $add['pagedescription']=AddAddsData(RepPhpAspJspcode($add['pagedescription']));
  104. $add[totalsql]=ClearAddsData($add[totalsql]);
  105. $add[listsql]=ClearAddsData($add[listsql]);
  106. $add['classid']=(int)$add['classid'];
  107. $add['filepath']=hRepPostStr($add['filepath'],1);
  108. $add['filetype']=hRepPostStr($add['filetype'],1);
  109. $sql=$empire->query("update {$dbtbpre}enewsuserlist set listname='$add[listname]',pagetitle='$add[pagetitle]',filepath='$add[filepath]',filetype='$add[filetype]',totalsql='".addslashes($add['totalsql'])."',listsql='".addslashes($add['listsql'])."',maxnum=$maxnum,lencord=$lencord,listtempid=$listtempid,pagekeywords='$add[pagekeywords]',pagedescription='$add[pagedescription]',classid='$add[classid]' where listid='$listid'");
  110. //刷新列表
  111. $add['listid']=$listid;
  112. ReUserlist($add,"../");
  113. if($sql)
  114. {
  115. //操作日志
  116. insert_dolog("listid=$listid&listname=$add[listname]");
  117. printerror("EditUserlistSuccess","ListUserlist.php?classid=$cid".hReturnEcmsHashStrHref2(0));
  118. }
  119. else
  120. {
  121. printerror("DbError","history.go(-1)");
  122. }
  123. }
  124. //删除自定义信息列表
  125. function DelUserlist($listid,$userid,$username){
  126. global $empire,$dbtbpre;
  127. $cid=(int)$add['cid'];
  128. $listid=(int)$listid;
  129. if(!$listid)
  130. {
  131. printerror("NotChangeUserlistid","history.go(-1)");
  132. }
  133. //验证权限
  134. CheckLevel($userid,$username,$classid,"userlist");
  135. $r=$empire->fetch1("select listname from {$dbtbpre}enewsuserlist where listid=$listid");
  136. $sql=$empire->query("delete from {$dbtbpre}enewsuserlist where listid=$listid");
  137. if($sql)
  138. {
  139. //操作日志
  140. insert_dolog("listid=$listid&listname=$r[listname]");
  141. printerror("DelUserlistSuccess","ListUserlist.php?classid=$cid".hReturnEcmsHashStrHref2(0));
  142. }
  143. else
  144. {
  145. printerror("DbError","history.go(-1)");
  146. }
  147. }
  148. //刷新自定义列表
  149. function DoReUserlist($add,$userid,$username){
  150. global $empire,$dbtbpre;
  151. //操作权限
  152. CheckLevel($userid,$username,$classid,"userlist");
  153. $listid=$add['listid'];
  154. $count=count($listid);
  155. if(!$count)
  156. {
  157. printerror("EmptyReUserlistid","history.go(-1)");
  158. }
  159. for($i=0;$i<$count;$i++)
  160. {
  161. $listid[$i]=(int)$listid[$i];
  162. if(empty($listid[$i]))
  163. {
  164. continue;
  165. }
  166. $ur=$empire->fetch1("select listid,pagetitle,filepath,filetype,totalsql,listsql,maxnum,lencord,listtempid,pagekeywords,pagedescription from {$dbtbpre}enewsuserlist where listid='".$listid[$i]."'");
  167. ReUserlist($ur,"../");
  168. }
  169. //操作日志
  170. insert_dolog("");
  171. printerror("DoReUserlistSuccess",EcmsGetReturnUrl());
  172. }
  173. $addgethtmlpath="../";
  174. $enews=$_POST['enews'];
  175. if(empty($enews))
  176. {$enews=$_GET['enews'];}
  177. if($enews)
  178. {
  179. hCheckEcmsRHash();
  180. require("../../data/dbcache/class.php");
  181. include("../../class/t_functions.php");
  182. }
  183. if($enews=="AddUserlist")
  184. {
  185. AddUserlist($_POST,$logininid,$loginin);
  186. }
  187. elseif($enews=="EditUserlist")
  188. {
  189. EditUserlist($_POST,$logininid,$loginin);
  190. }
  191. elseif($enews=="DelUserlist")
  192. {
  193. $listid=$_GET['listid'];
  194. DelUserlist($listid,$logininid,$loginin);
  195. }
  196. elseif($enews=="DoReUserlist")
  197. {
  198. DoReUserlist($_POST,$logininid,$loginin);
  199. }
  200. else
  201. {}
  202. $page=(int)$_GET['page'];
  203. $page=RepPIntvar($page);
  204. $start=0;
  205. $line=20;//每页显示条数
  206. $page_line=20;//每页显示链接数
  207. $offset=$page*$line;//总偏移量
  208. $search='';
  209. $search.=$ecms_hashur['ehref'];
  210. $query="select listid,listname,filepath from {$dbtbpre}enewsuserlist";
  211. $totalquery="select count(*) as total from {$dbtbpre}enewsuserlist";
  212. //类别
  213. $add="";
  214. $classid=(int)$_GET['classid'];
  215. if($classid)
  216. {
  217. $add=" where classid=$classid";
  218. $search.="&classid=$classid";
  219. }
  220. $query.=$add;
  221. $totalquery.=$add;
  222. $num=$empire->gettotal($totalquery);//取得总条数
  223. $query=$query." order by listid desc limit $offset,$line";
  224. $sql=$empire->query($query);
  225. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  226. //分类
  227. $cstr="";
  228. $csql=$empire->query("select classid,classname from {$dbtbpre}enewsuserlistclass order by classid");
  229. while($cr=$empire->fetch($csql))
  230. {
  231. $select="";
  232. if($cr[classid]==$classid)
  233. {
  234. $select=" selected";
  235. }
  236. $cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  237. }
  238. ?>
  239. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  240. <html>
  241. <head>
  242. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  243. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  244. <title>管理自定义信息列表</title>
  245. <script>
  246. function CheckAll(form)
  247. {
  248. for (var i=0;i<form.elements.length;i++)
  249. {
  250. var e = form.elements[i];
  251. if (e.name != 'chkall')
  252. e.checked = form.chkall.checked;
  253. }
  254. }
  255. </script>
  256. </head>
  257. <body>
  258. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  259. <tr>
  260. <td width="50%" height="25">位置:<a href=ListUserlist.php<?=$ecms_hashur['whehref']?>>管理自定义信息列表</a></td>
  261. <td><div align="right" class="emenubutton">
  262. <input type="button" name="Submit" value="增加自定义列表" onclick="self.location.href='AddUserlist.php?enews=AddUserlist<?=$ecms_hashur['ehref']?>';">
  263. &nbsp;&nbsp;
  264. <input type="button" name="Submit5" value="管理自定义列表分类" onclick="self.location.href='UserlistClass.php<?=$ecms_hashur['whehref']?>';">
  265. </div></td>
  266. </tr>
  267. </table>
  268. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  269. <tr>
  270. <td> 选择类别:
  271. <select name="classid" id="classid" onchange=window.location='ListUserlist.php?<?=$ecms_hashur['ehref']?>&classid='+this.options[this.selectedIndex].value>
  272. <option value="0">显示所有类别</option>
  273. <?=$cstr?>
  274. </select>
  275. </td>
  276. </tr>
  277. </table>
  278. <br>
  279. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  280. <form name="form1" method="post" action="ListUserlist.php">
  281. <?=$ecms_hashur['form']?>
  282. <tr class="header">
  283. <td width="4%"><div align="center">
  284. <input type=checkbox name=chkall value=on onclick=CheckAll(this.form)>
  285. </div></td>
  286. <td width="7%" height="25"> <div align="center">ID</div></td>
  287. <td width="32%" height="25"> <div align="center">列表名称</div></td>
  288. <td width="29%"><div align="center">页面地址</div></td>
  289. <td width="10%"><div align="center">预览</div></td>
  290. <td width="18%" height="25"> <div align="center">操作</div></td>
  291. </tr>
  292. <?
  293. while($r=$empire->fetch($sql))
  294. {
  295. $jspath=$public_r['newsurl'].str_replace("../../","",$r['filepath']);
  296. ?>
  297. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  298. <td><div align="center">
  299. <input name="listid[]" type="checkbox" id="listid[]" value="<?=$r[listid]?>">
  300. </div></td>
  301. <td height="25"> <div align="center">
  302. <?=$r[listid]?>
  303. </div></td>
  304. <td height="25"> <div align="center">
  305. <?=$r[listname]?>
  306. </div></td>
  307. <td><div align="center">
  308. <input name="textfield" type="text" value="<?=$jspath?>">
  309. </div></td>
  310. <td><div align="center">[<a href="<?=$jspath?>" target="_blank">预览</a>]</div></td>
  311. <td height="25"> <div align="center">[<a href="AddUserlist.php?enews=EditUserlist&listid=<?=$r[listid]?>&cid=<?=$classid?><?=$ecms_hashur['ehref']?>">修改</a>]&nbsp;[<a href="AddUserlist.php?enews=AddUserlist&docopy=1&listid=<?=$r[listid]?>&cid=<?=$classid?><?=$ecms_hashur['ehref']?>">复制</a>]&nbsp;[<a href="ListUserlist.php?enews=DelUserlist&listid=<?=$r[listid]?>&cid=<?=$classid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  312. </tr>
  313. <?
  314. }
  315. ?>
  316. <tr bgcolor="#FFFFFF">
  317. <td height="25" colspan="6">
  318. <?=$returnpage?>
  319. &nbsp;&nbsp;&nbsp; <input type="submit" name="Submit3" value="刷新"> <input name="enews" type="hidden" id="enews" value="DoReUserlist"> </td>
  320. </tr>
  321. </form>
  322. </table>
  323. </body>
  324. </html>
  325. <?
  326. db_close();
  327. $empire=null;
  328. ?>