ListSp.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  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,"sp");
  21. //返回用户组
  22. function ReturnSpGroup($groupid){
  23. $count=count($groupid);
  24. if($count==0)
  25. {
  26. return '';
  27. }
  28. $ids=',';
  29. for($i=0;$i<$count;$i++)
  30. {
  31. $ids.=$groupid[$i].',';
  32. }
  33. return $ids;
  34. }
  35. //增加碎片
  36. function AddSp($add,$userid,$username){
  37. global $empire,$dbtbpre;
  38. $add['varname']=RepPostVar($add['varname']);
  39. if(!$add[spname]||!$add[varname])
  40. {
  41. printerror("EmptySp","history.go(-1)");
  42. }
  43. //验证权限
  44. CheckLevel($userid,$username,$classid,"sp");
  45. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewssp where varname='$add[varname]' limit 1");
  46. if($num)
  47. {
  48. printerror("HaveSp","history.go(-1)");
  49. }
  50. $add[sptype]=(int)$add[sptype];
  51. $add[cid]=(int)$add[cid];
  52. $add[classid]=(int)$add[classid];
  53. $add[tempid]=(int)$add[tempid];
  54. $add[maxnum]=(int)$add[maxnum];
  55. $sptime=time();
  56. $groupid=ReturnSpGroup($add[groupid]);
  57. $userclass=ReturnSpGroup($add[userclass]);
  58. $username=','.$add[username].',';
  59. $add[isclose]=(int)$add[isclose];
  60. $add[cladd]=(int)$add[cladd];
  61. $add['refile']=(int)$add['refile'];
  62. $add['spfile']=DoRepFileXg($add['spfile']);
  63. $add['spfileline']=(int)$add['spfileline'];
  64. $add['spfilesub']=(int)$add['spfilesub'];
  65. $add['filepass']=(int)$add['filepass'];
  66. $add['spname']=hRepPostStr($add['spname'],1);
  67. $add['sppic']=hRepPostStr($add['sppic'],1);
  68. $add['spsay']=hRepPostStr($add['spsay'],1);
  69. $groupid=hRepPostStr($groupid,1);
  70. $userclass=hRepPostStr($userclass,1);
  71. $username=hRepPostStr($username,1);
  72. $add['spfile']=hRepPostStr($add['spfile'],1);
  73. $sql=$empire->query("insert into {$dbtbpre}enewssp(spname,varname,sppic,spsay,sptype,cid,classid,tempid,maxnum,sptime,groupid,userclass,username,isclose,cladd,refile,spfile,spfileline,spfilesub) values('$add[spname]','$add[varname]','$add[sppic]','$add[spsay]','$add[sptype]','$add[cid]','$add[classid]','$add[tempid]','$add[maxnum]','$sptime','$groupid','$userclass','$username','$add[isclose]','$add[cladd]','$add[refile]','$add[spfile]','$add[spfileline]','$add[spfilesub]');");
  74. $spid=$empire->lastid();
  75. //更新附件
  76. UpdateTheFileOther(7,$spid,$add['filepass'],'other');
  77. //生成碎片文件
  78. if($add['refile'])
  79. {
  80. $add['spid']=$spid;
  81. DoSpReFile($add,0);
  82. }
  83. if($sql)
  84. {
  85. //操作日志
  86. insert_dolog("spid=".$spid."<br>spname=".$add[spname]);
  87. printerror("AddSpSuccess","AddSp.php?enews=AddSp".hReturnEcmsHashStrHref2(0));
  88. }
  89. else
  90. {printerror("DbError","history.go(-1)");}
  91. }
  92. //修改碎片
  93. function EditSp($add,$userid,$username){
  94. global $empire,$dbtbpre;
  95. $add['varname']=RepPostVar($add['varname']);
  96. $spid=(int)$add[spid];
  97. if(!$spid||!$add[spname]||!$add[varname])
  98. {
  99. printerror("EmptySp","history.go(-1)");
  100. }
  101. //验证权限
  102. CheckLevel($userid,$username,$classid,"sp");
  103. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewssp where varname='$add[varname]' and spid<>$spid limit 1");
  104. if($num)
  105. {
  106. printerror("HaveSp","history.go(-1)");
  107. }
  108. $add[sptype]=(int)$add[sptype];
  109. $add[cid]=(int)$add[cid];
  110. $add[classid]=(int)$add[classid];
  111. $add[tempid]=(int)$add[tempid];
  112. $add[maxnum]=(int)$add[maxnum];
  113. $sptime=time();
  114. $groupid=ReturnSpGroup($add[groupid]);
  115. $userclass=ReturnSpGroup($add[userclass]);
  116. $username=','.$add[username].',';
  117. $add[isclose]=(int)$add[isclose];
  118. $add[cladd]=(int)$add[cladd];
  119. $add['refile']=(int)$add['refile'];
  120. $add['spfile']=DoRepFileXg($add['spfile']);
  121. $add['oldspfile']=DoRepFileXg($add['oldspfile']);
  122. $add['spfileline']=(int)$add['spfileline'];
  123. $add['spfilesub']=(int)$add['spfilesub'];
  124. $add['filepass']=(int)$add['filepass'];
  125. $add['spname']=hRepPostStr($add['spname'],1);
  126. $add['sppic']=hRepPostStr($add['sppic'],1);
  127. $add['spsay']=hRepPostStr($add['spsay'],1);
  128. $groupid=hRepPostStr($groupid,1);
  129. $userclass=hRepPostStr($userclass,1);
  130. $username=hRepPostStr($username,1);
  131. $add['spfile']=hRepPostStr($add['spfile'],1);
  132. $sql=$empire->query("update {$dbtbpre}enewssp set spname='$add[spname]',varname='$add[varname]',sppic='$add[sppic]',spsay='$add[spsay]',sptype='$add[sptype]',cid='$add[cid]',classid='$add[classid]',tempid='$add[tempid]',maxnum='$add[maxnum]',groupid='$groupid',userclass='$userclass',username='$username',isclose='$add[isclose]',cladd='$add[cladd]',refile='$add[refile]',spfile='$add[spfile]',spfileline='$add[spfileline]',spfilesub='$add[spfilesub]' where spid='$spid'");
  133. //更新附件
  134. UpdateTheFileEditOther(7,$spid,'other');
  135. //生成碎片文件
  136. if($add['refile'])
  137. {
  138. //旧文件
  139. if($add['spfile']!=$add['oldspfile'])
  140. {
  141. DelSpReFile($add['oldspfile']);
  142. }
  143. $add['spid']=$spid;
  144. DoSpReFile($add,0);
  145. }
  146. if($sql)
  147. {
  148. //操作日志
  149. insert_dolog("spid=".$spid."<br>spname=".$add[spname]);
  150. printerror("EditSpSuccess","ListSp.php?cid=$add[fcid]&fclassid=$add[fclassid]&fsptype=$add[fsptype]".hReturnEcmsHashStrHref2(0));
  151. }
  152. else
  153. {printerror("DbError","history.go(-1)");}
  154. }
  155. //删除碎片
  156. function DelSp($add,$userid,$username){
  157. global $empire,$dbtbpre;
  158. $spid=(int)$add[spid];
  159. if(!$spid)
  160. {
  161. printerror("NotDelSpid","history.go(-1)");
  162. }
  163. //验证权限
  164. CheckLevel($userid,$username,$classid,"sp");
  165. $r=$empire->fetch1("select spname,sptype,refile,spfile from {$dbtbpre}enewssp where spid='$spid'");
  166. $sql=$empire->query("delete from {$dbtbpre}enewssp where spid='$spid'");
  167. if($r[sptype]==1)
  168. {
  169. $empire->query("delete from {$dbtbpre}enewssp_1 where spid='$spid'");
  170. }
  171. elseif($r[sptype]==2)
  172. {
  173. $empire->query("delete from {$dbtbpre}enewssp_2 where spid='$spid'");
  174. }
  175. if($r[sptype]==3)
  176. {
  177. $empire->query("delete from {$dbtbpre}enewssp_3 where spid='$spid'");
  178. $empire->query("delete from {$dbtbpre}enewssp_3_bak where spid='$spid'");
  179. }
  180. //删除碎片文件
  181. if($r['refile'])
  182. {
  183. DelSpReFile($r['spfile']);
  184. }
  185. //删除附件
  186. DelFileOtherTable("modtype=7 and id='$spid'");
  187. if($sql)
  188. {
  189. //操作日志
  190. insert_dolog("spid=".$spid."<br>spname=".$r[spname]);
  191. printerror("DelSpSuccess","ListSp.php?cid=$add[fcid]&fclassid=$add[fclassid]&fsptype=$add[fsptype]".hReturnEcmsHashStrHref2(0));
  192. }
  193. else
  194. {printerror("DbError","history.go(-1)");}
  195. }
  196. //删除碎片文件
  197. function DelSpReFile($file){
  198. $filename=ECMS_PATH.$file;
  199. if($file&&file_exists($filename)&&!stristr('/'.$file,'/e/'))
  200. {
  201. DelFiletext($filename);
  202. //moreportdo
  203. if($file)
  204. {
  205. $eautodofname='delfile|'.$file.'||';
  206. eAutodo_AddDo('eDelFileSp',0,0,0,0,0,$eautodofname);
  207. }
  208. }
  209. }
  210. $enews=$_POST['enews'];
  211. if(empty($enews))
  212. {$enews=$_GET['enews'];}
  213. if($enews)
  214. {
  215. hCheckEcmsRHash();
  216. include('../../class/chtmlfun.php');
  217. include('../../data/dbcache/class.php');
  218. include('../../class/t_functions.php');
  219. }
  220. if($enews=="AddSp")//增加碎片
  221. {
  222. AddSp($_POST,$logininid,$loginin);
  223. }
  224. elseif($enews=="EditSp")//修改碎片
  225. {
  226. EditSp($_POST,$logininid,$loginin);
  227. }
  228. elseif($enews=="DelSp")//删除碎片
  229. {
  230. DelSp($_GET,$logininid,$loginin);
  231. }
  232. elseif($enews=='ReSp')//刷新碎片文件
  233. {
  234. ReSp($_POST,$logininid,$loginin,0);
  235. }
  236. $page=(int)$_GET['page'];
  237. $page=RepPIntvar($page);
  238. $start=0;
  239. $line=30;//每页显示条数
  240. $page_line=12;//每页显示链接数
  241. $offset=$page*$line;//总偏移量
  242. $add='';
  243. $and='';
  244. $search='';
  245. $search.=$ecms_hashur['ehref'];
  246. //碎片类型
  247. $sptype=(int)$_GET['sptype'];
  248. if($sptype)
  249. {
  250. $add.=$and."sptype='$sptype'";
  251. $and=' and ';
  252. $search.="&sptype=$sptype";
  253. }
  254. //分类
  255. $cid=(int)$_GET['cid'];
  256. if($cid)
  257. {
  258. $add.=$and."cid='$cid'";
  259. $and=' and ';
  260. $search.="&cid=$cid";
  261. }
  262. //栏目
  263. $classid=(int)$_GET['classid'];
  264. if($classid)
  265. {
  266. $add.=$and."classid='$classid'";
  267. $search.="&classid=$classid";
  268. }
  269. if($add)
  270. {
  271. $add=' where '.$add;
  272. }
  273. $query="select spid,spname,varname,cid,classid,isclose,sptype,sptime,refile,spfile from {$dbtbpre}enewssp".$add;
  274. $totalquery="select count(*) as total from {$dbtbpre}enewssp".$add;
  275. $num=$empire->gettotal($totalquery);//取得总条数
  276. $query=$query." order by spid desc limit $offset,$line";
  277. $sql=$empire->query($query);
  278. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  279. $url="<a href=ListSp.php".$ecms_hashur['whehref'].">管理碎片</a>";
  280. //分类
  281. $scstr="";
  282. $scsql=$empire->query("select classid,classname from {$dbtbpre}enewsspclass order by classid");
  283. while($scr=$empire->fetch($scsql))
  284. {
  285. $select="";
  286. if($scr[classid]==$cid)
  287. {
  288. $select=" selected";
  289. }
  290. $scstr.="<option value='".$scr[classid]."'".$select.">".$scr[classname]."</option>";
  291. }
  292. ?>
  293. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  294. <html>
  295. <head>
  296. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  297. <title>碎片</title>
  298. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  299. <script>
  300. function CheckAll(form)
  301. {
  302. for (var i=0;i<form.elements.length;i++)
  303. {
  304. var e = form.elements[i];
  305. if (e.name != 'chkall')
  306. e.checked = form.chkall.checked;
  307. }
  308. }
  309. </script>
  310. </head>
  311. <body>
  312. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  313. <tr>
  314. <td width="50%">位置:
  315. <?=$url?>
  316. </td>
  317. <td><div align="right" class="emenubutton">
  318. <input type="button" name="Submit5" value="增加碎片" onclick="self.location.href='AddSp.php?enews=AddSp<?=$ecms_hashur['ehref']?>';">
  319. &nbsp;&nbsp;
  320. <input type="button" name="Submit52" value="管理碎片分类" onclick="self.location.href='ListSpClass.php<?=$ecms_hashur['whehref']?>';">
  321. </div></td>
  322. </tr>
  323. </table>
  324. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  325. <tr>
  326. <td> 选择分类:
  327. <select name="classid" id="classid" onchange=window.location='ListSp.php?<?=$ecms_hashur['ehref']?>&cid='+this.options[this.selectedIndex].value>
  328. <option value="0">显示所有分类</option>
  329. <?=$scstr?>
  330. </select> </td>
  331. </tr>
  332. </table>
  333. <br>
  334. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  335. <form name="listspform" method="post" action="ListSp.php">
  336. <?=$ecms_hashur['form']?>
  337. <tr class="header">
  338. <td width="4%"><div align="center"><input type=checkbox name=chkall value=on onClick="CheckAll(this.form)"></div></td>
  339. <td width="6%" height="25"><div align="center">ID</div></td>
  340. <td width="20%" height="25"><div align="center">碎片名称</div></td>
  341. <td width="17%"><div align="center">变量名</div></td>
  342. <td width="15%"><div align="center">所属分类</div></td>
  343. <td width="12%"><div align="center">碎片类型</div></td>
  344. <td width="6%"><div align="center">状态</div></td>
  345. <td width="20%" height="25"><div align="center">操作</div></td>
  346. </tr>
  347. <?
  348. while($r=$empire->fetch($sql))
  349. {
  350. $spclassname='--';
  351. if($r[cid])
  352. {
  353. $scr=$empire->fetch1("select classname from {$dbtbpre}enewsspclass where classid='$r[cid]'");
  354. $spclassname=$scr['classname'];
  355. }
  356. if($r[sptype]==1)
  357. {
  358. $sptypename='静态信息';
  359. }
  360. elseif($r[sptype]==2)
  361. {
  362. $sptypename='动态信息';
  363. }
  364. else
  365. {
  366. $sptypename='代码碎片';
  367. }
  368. //链接
  369. $sphref='';
  370. if($r['refile'])
  371. {
  372. $sphref=' href="'.$public_r['newsurl'].$r['spfile'].'" target="_blank"';
  373. }
  374. ?>
  375. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  376. <td><div align="center">
  377. <?php
  378. if($r['refile'])
  379. {
  380. ?>
  381. <input name="spid[]" type="checkbox" id="spid[]" value="<?=$r[spid]?>">
  382. <?php
  383. }
  384. ?>
  385. </div></td>
  386. <td height="32"><div align="center">
  387. <?=$r[spid]?>
  388. </div></td>
  389. <td height="25"><a<?=$sphref?> title="增加时间:<?=date('Y-m-d H:i:s',$r[sptime])?>">
  390. <?=$r[spname]?>
  391. </a> </td>
  392. <td><div align="center">
  393. <?=$r[varname]?>
  394. </div></td>
  395. <td><div align="center"><a href="ListSp.php?cid=<?=$r[cid]?><?=$ecms_hashur['ehref']?>">
  396. <?=$spclassname?>
  397. </a></div></td>
  398. <td><div align="center"><a href="ListSp.php?sptype=<?=$r[sptype]?><?=$ecms_hashur['ehref']?>">
  399. <?=$sptypename?>
  400. </a></div></td>
  401. <td><div align="center">
  402. <?=$r[isclose]==1?'<font color="red">关闭</font>':'开启'?>
  403. </div></td>
  404. <td height="25"><div align="center">[<a href="AddSp.php?enews=EditSp&spid=<?=$r[spid]?>&fcid=<?=$cid?>&fclassid=<?=$classid?>&fsptype=<?=$sptype?><?=$ecms_hashur['ehref']?>">修改</a>]
  405. [<a href="AddSp.php?enews=AddSp&spid=<?=$r[spid]?>&fcid=<?=$cid?>&fclassid=<?=$classid?>&fsptype=<?=$sptype?>&docopy=1<?=$ecms_hashur['ehref']?>">复制</a>]
  406. [<a href="ListSp.php?enews=DelSp&spid=<?=$r[spid]?>&fcid=<?=$cid?>&fclassid=<?=$classid?>&fsptype=<?=$sptype?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  407. </tr>
  408. <?
  409. }
  410. ?>
  411. <tr bgcolor="#FFFFFF">
  412. <td height="25" colspan="8">&nbsp;
  413. <?=$returnpage?>
  414. &nbsp;&nbsp;&nbsp;&nbsp; <input type="submit" name="Submit" value="刷新碎片文件">
  415. <input name="enews" type="hidden" id="enews" value="ReSp"></td>
  416. </tr>
  417. </form>
  418. </table>
  419. </body>
  420. </html>
  421. <?
  422. db_close();
  423. $empire=null;
  424. ?>