UpdateSp.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. $enews=$_POST['enews'];
  20. if(empty($enews))
  21. {$enews=$_GET['enews'];}
  22. if($enews)
  23. {
  24. hCheckEcmsRHash();
  25. include('../../class/chtmlfun.php');
  26. include('../../data/dbcache/class.php');
  27. include('../../class/t_functions.php');
  28. }
  29. if($enews=='ReSp')//刷新碎片文件
  30. {
  31. ReSp($_GET,$logininid,$loginin,1);
  32. }
  33. $page=(int)$_GET['page'];
  34. $page=RepPIntvar($page);
  35. $start=0;
  36. $line=30;//每页显示条数
  37. $page_line=12;//每页显示链接数
  38. $offset=$page*$line;//总偏移量
  39. $add='';
  40. $search='';
  41. $search.=$ecms_hashur['ehref'];
  42. //碎片类型
  43. $sptype=(int)$_GET['sptype'];
  44. if($sptype)
  45. {
  46. $add.=" and sptype='$sptype'";
  47. $search.="&sptype=$sptype";
  48. }
  49. //分类
  50. $cid=(int)$_GET['cid'];
  51. if($cid)
  52. {
  53. $add.=" and cid='$cid'";
  54. $search.="&cid=$cid";
  55. }
  56. //栏目
  57. $classid=(int)$_GET['classid'];
  58. if($classid)
  59. {
  60. $add.=" and classid='$classid'";
  61. $search.="&classid=$classid";
  62. }
  63. $query="select spid,spname,varname,cid,classid,sptype,sppic,spsay,refile,spfile from {$dbtbpre}enewssp where isclose=0 and (groupid like '%,".$lur[groupid].",%' or userclass like '%,".$lur[classid].",%' or username like '%,".$lur[username].",%')".$add;
  64. $totalquery="select count(*) as total from {$dbtbpre}enewssp where isclose=0 and (groupid like '%,".$lur[groupid].",%' or userclass like '%,".$lur[classid].",%' or username like '%,".$lur[username].",%')".$add;
  65. $num=$empire->gettotal($totalquery);//取得总条数
  66. $query=$query." order by spid desc limit $offset,$line";
  67. $sql=$empire->query($query);
  68. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  69. $url="<a href=UpdateSp.php".$ecms_hashur['whehref'].">更新碎片</a>";
  70. //分类
  71. $scstr="";
  72. $scsql=$empire->query("select classid,classname from {$dbtbpre}enewsspclass order by classid");
  73. while($scr=$empire->fetch($scsql))
  74. {
  75. $select="";
  76. if($scr[classid]==$cid)
  77. {
  78. $select=" selected";
  79. }
  80. $scstr.="<option value='".$scr[classid]."'".$select.">".$scr[classname]."</option>";
  81. }
  82. ?>
  83. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  84. <html>
  85. <head>
  86. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  87. <title>碎片</title>
  88. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  89. </head>
  90. <body>
  91. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  92. <tr>
  93. <td>位置:
  94. <?=$url?>
  95. <div align="right"> </div></td>
  96. </tr>
  97. </table>
  98. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  99. <form name="searchform" method="GET" action="UpdateSp.php">
  100. <?=$ecms_hashur['eform']?>
  101. <tr>
  102. <td>
  103. <select name="cid">
  104. <option value="0">所有分类</option>
  105. <?=$scstr?>
  106. </select>
  107. <select name="sptype" id="所有类型">
  108. <option value="0">所有类型</option>
  109. <option value="1"<?=$sptype==1?' selected':''?>>静态信息碎片</option>
  110. <option value="2"<?=$sptype==2?' selected':''?>>动态信息碎片</option>
  111. <option value="3"<?=$sptype==3?' selected':''?>>代码碎片</option>
  112. </select>
  113. <span id="listplclassnav"></span>
  114. &nbsp;<input type="submit" name="Submit" value="显示"></td>
  115. </tr>
  116. </form>
  117. </table>
  118. <br>
  119. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  120. <tr class="header">
  121. <td width="21%" height="25"> <div align="center">碎片名称</div></td>
  122. <td width="19%"><div align="center">变量名</div></td>
  123. <td width="40%"> <div align="center">描述</div></td>
  124. <td width="20%" height="25"><div align="center">操作</div></td>
  125. </tr>
  126. <?
  127. while($r=$empire->fetch($sql))
  128. {
  129. if($r[sptype]==1)
  130. {
  131. $sptype='静态信息';
  132. $dourl="ListSpInfo.php?spid=$r[spid]".$ecms_hashur['ehref'];
  133. }
  134. elseif($r[sptype]==2)
  135. {
  136. $sptype='动态信息';
  137. $dourl="ListSpInfo.php?spid=$r[spid]".$ecms_hashur['ehref'];
  138. }
  139. else
  140. {
  141. $sptype='代码碎片';
  142. $dourl="AddSpInfo.php?enews=EditSpInfo&spid=$r[spid]".$ecms_hashur['ehref'];
  143. }
  144. //链接
  145. $sphref='';
  146. if($r['refile'])
  147. {
  148. $sphref=' href="'.$public_r['newsurl'].$r['spfile'].'" target="_blank"';
  149. }
  150. $sppic='';
  151. if($r[sppic])
  152. {
  153. $sppic='<a href="'.$r[sppic].'" title="碎片效果图" target="_blank"><img src="../../data/images/showimg.gif" border=0 align="absmiddle"></a>';
  154. }
  155. ?>
  156. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  157. <td height="32"><a<?=$sphref?> title="<?=$sptype?>">
  158. <?=$r[spname]?>
  159. </a> <?=$sppic?></td>
  160. <td><div align="center">
  161. <?=$r[varname]?>
  162. </div></td>
  163. <td>
  164. <?=$r[spsay]?>
  165. </td>
  166. <td height="25"><div align="center">[<a href="<?=$dourl?>" target="_blank">更新碎片</a>]
  167. <?php
  168. if($r['refile'])
  169. {
  170. ?>
  171. [<a href="UpdateSp.php?enews=ReSp&spid[]=<?=$r[spid]?><?=$ecms_hashur['href']?>">刷新碎片文件</a>]
  172. <?php
  173. }
  174. ?>
  175. </div></td>
  176. </tr>
  177. <?
  178. }
  179. ?>
  180. <tr bgcolor="#FFFFFF">
  181. <td height="25" colspan="4">&nbsp;
  182. <?=$returnpage?>
  183. </td>
  184. </tr>
  185. </table>
  186. <IFRAME frameBorder="0" id="showclassnav" name="showclassnav" scrolling="no" src="../ShowClassNav.php?ecms=6&classid=<?=$classid?><?=$ecms_hashur['ehref']?>" style="HEIGHT:0;VISIBILITY:inherit;WIDTH:0;Z-INDEX:1"></IFRAME>
  187. </body>
  188. </html>
  189. <?
  190. db_close();
  191. $empire=null;
  192. ?>