ZtType.php 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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. $ztid=(int)$_GET['ztid'];
  19. if(empty($ztid))
  20. {
  21. $ztid=(int)$_POST['ztid'];
  22. }
  23. //验证权限
  24. //CheckLevel($logininid,$loginin,$classid,"zt");
  25. $returnandlevel=CheckAndUsernamesLevel('dozt',$ztid,$logininid,$loginin,$loginlevel);
  26. //处理变量
  27. function DoPostZtTypeVar($add){
  28. if(empty($add['ttype']))
  29. {
  30. $add['ttype']='.html';
  31. }
  32. $add['cname']=eaddslashes(ehtmlspecialchars($add['cname']));
  33. $add['myorder']=(int)$add['myorder'];
  34. $add['islist']=(int)$add['islist'];
  35. $add['listtempid']=(int)$add['listtempid'];
  36. $add['maxnum']=(int)$add['maxnum'];
  37. $add['tnum']=(int)$add['tnum'];
  38. $add['reorder']=RepPostVar2($add['reorder']);
  39. $add['classtext']=RepPhpAspJspcode($add['classtext']);
  40. if($add['tfile'])
  41. {
  42. if(!eReturnCkCFile($add['tfile']))
  43. {
  44. $add['tfile']='';
  45. }
  46. $add['tfile']=RepFilenameQz($add['tfile'],0);
  47. }
  48. $add['ttype']=hRepPostStr($add['ttype'],1);
  49. $add['tfile']=hRepPostStr($add['tfile'],1);
  50. $add['tfile']=eaddslashes($add['tfile']);
  51. return $add;
  52. }
  53. //增加子类
  54. function AddZtType($add,$userid,$username){
  55. global $empire,$dbtbpre;
  56. $add=DoPostZtTypeVar($add);
  57. $ztid=(int)$add['ztid'];
  58. if(!$ztid||!$add[cname])
  59. {
  60. printerror("EmptyZtType","history.go(-1)");
  61. }
  62. //验证权限
  63. //CheckLevel($userid,$username,$classid,"zt");
  64. //验证文件名
  65. if($add['tfile'])
  66. {
  67. if($add['tfile']=='index')
  68. {
  69. printerror("ZtTypeFileExist","history.go(-1)");
  70. }
  71. $filenum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewszttype where ztid='$ztid' and tfile='$add[tfile]' limit 1");
  72. if($filenum)
  73. {
  74. printerror("ZtTypeFileExist","history.go(-1)");
  75. }
  76. }
  77. $sql=$empire->query("insert into {$dbtbpre}enewszttype(ztid,cname,myorder,islist,listtempid,maxnum,tnum,reorder,ttype,tfile) values('$ztid','$add[cname]','$add[myorder]','$add[islist]','$add[listtempid]','$add[maxnum]','$add[tnum]','$add[reorder]','$add[ttype]','$add[tfile]');");
  78. $lastid=$empire->lastid();
  79. $empire->query("insert into {$dbtbpre}enewszttypeadd(cid,classtext) values('$lastid','".eaddslashes2($add[classtext])."');");
  80. //文件名
  81. if(empty($add['tfile']))
  82. {
  83. $tfile='type'.$lastid;
  84. $empire->query("update {$dbtbpre}enewszttype set tfile='$tfile' where cid='$lastid'");
  85. }
  86. //生成页面
  87. ListHtmlIndex($lastid,'',1);
  88. if($sql)
  89. {
  90. //操作日志
  91. insert_dolog("ztid=".$ztid."<br>cid=".$lastid."&cname=".$add[cname]);
  92. printerror("AddZtTypeSuccess","ZtType.php?ztid=$ztid".hReturnEcmsHashStrHref2(0));
  93. }
  94. else
  95. {
  96. printerror("DbError","history.go(-1)");
  97. }
  98. }
  99. //修改子类
  100. function EditZtType($add,$userid,$username){
  101. global $empire,$dbtbpre;
  102. $add=DoPostZtTypeVar($add);
  103. $ztid=(int)$add['ztid'];
  104. $cid=(int)$add['cid'];
  105. if(!$ztid||!$cid||!$add[cname])
  106. {
  107. printerror("EmptyZtType","history.go(-1)");
  108. }
  109. //验证权限
  110. //CheckLevel($userid,$username,$classid,"zt");
  111. $r=$empire->fetch1("select * from {$dbtbpre}enewszttype where cid='$cid' and ztid='$ztid' limit 1");
  112. if(!$r['ztid'])
  113. {
  114. printerror('ErrorUrl','');
  115. }
  116. //验证文件名
  117. if($add['tfile']&&$add['tfile']<>$r['tfile'])
  118. {
  119. if($add['tfile']=='index')
  120. {
  121. printerror("ZtTypeFileExist","history.go(-1)");
  122. }
  123. $filenum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewszttype where ztid='$ztid' and cid<>$cid and tfile='$add[tfile]' limit 1");
  124. if($filenum)
  125. {
  126. printerror("ZtTypeFileExist","history.go(-1)");
  127. }
  128. }
  129. if(empty($add['tfile']))
  130. {
  131. $add['tfile']='type'.$cid;
  132. }
  133. $sql=$empire->query("update {$dbtbpre}enewszttype set cname='$add[cname]',myorder='$add[myorder]',islist='$add[islist]',listtempid='$add[listtempid]',maxnum='$add[maxnum]',tnum='$add[tnum]',reorder='$add[reorder]',ttype='$add[ttype]',tfile='$add[tfile]' where cid='$cid'");
  134. $empire->query("update {$dbtbpre}enewszttypeadd set classtext='".eaddslashes2($add[classtext])."' where cid='$cid'");
  135. //改变文件名
  136. if($add['tfile'].$add['ttype']<>$r['tfile'].$r['ttype'])
  137. {
  138. DelZtcFile($cid,$r);
  139. }
  140. //生成页面
  141. ListHtmlIndex($cid,'',1);
  142. if($sql)
  143. {
  144. //操作日志
  145. insert_dolog("ztid=".$ztid."<br>cid=".$cid."<br>cname=".$add[cname]);
  146. printerror("EditZtTypeSuccess","ZtType.php?ztid=$ztid".hReturnEcmsHashStrHref2(0));
  147. }
  148. else
  149. {
  150. printerror("DbError","history.go(-1)");
  151. }
  152. }
  153. //删除子类
  154. function DelZtType($add,$userid,$username){
  155. global $empire,$dbtbpre;
  156. $ztid=(int)$add['ztid'];
  157. $cid=(int)$add['cid'];
  158. if(!$ztid||!$cid)
  159. {
  160. printerror("EmptyZtTypeId","history.go(-1)");
  161. }
  162. //验证权限
  163. //CheckLevel($userid,$username,$classid,"zt");
  164. $r=$empire->fetch1("select * from {$dbtbpre}enewszttype where cid='$cid' and ztid='$ztid' limit 1");
  165. if(!$r['ztid'])
  166. {
  167. printerror('ErrorUrl','');
  168. }
  169. $sql=$empire->query("delete from {$dbtbpre}enewszttype where cid='$cid'");
  170. $empire->query("delete from {$dbtbpre}enewszttypeadd where cid='$cid'");
  171. //删除页面
  172. DelZtcFile($cid,$r);
  173. $empire->query("update {$dbtbpre}enewsztinfo set cid=0 where cid='$cid'");
  174. if($sql)
  175. {
  176. //操作日志
  177. insert_dolog("ztid=".$ztid."<br>cid=".$cid."<br>cname=".$r[cname]);
  178. printerror("DelZtTypeSuccess","ZtType.php?ztid=$ztid".hReturnEcmsHashStrHref2(0));
  179. }
  180. else
  181. {
  182. printerror("DbError","history.go(-1)");
  183. }
  184. }
  185. $enews=$_POST['enews'];
  186. if(empty($enews))
  187. {$enews=$_GET['enews'];}
  188. if($enews)
  189. {
  190. hCheckEcmsRHash();
  191. include '../'.LoadLang('pub/fun.php');
  192. include('../../class/t_functions.php');
  193. include('../../data/dbcache/class.php');
  194. include('../../data/dbcache/MemberLevel.php');
  195. }
  196. if($enews=="AddZtType")//增加子类
  197. {
  198. AddZtType($_POST,$logininid,$loginin);
  199. }
  200. elseif($enews=="EditZtType")//修改子类
  201. {
  202. EditZtType($_POST,$logininid,$loginin);
  203. }
  204. elseif($enews=="DelZtType")//删除子类
  205. {
  206. DelZtType($_GET,$logininid,$loginin);
  207. }
  208. else
  209. {}
  210. $ztr=$empire->fetch1("select ztid,ztname,ztpath,zturl,zttype from {$dbtbpre}enewszt where ztid='$ztid'");
  211. if(!$ztr['ztid'])
  212. {
  213. printerror('ErrorUrl','');
  214. }
  215. if($ztr[zturl])
  216. {
  217. $ztlink=$ztr[zturl];
  218. }
  219. else
  220. {
  221. $ztlink=$public_r['newsurl'].$ztr[ztpath];
  222. }
  223. $sql=$empire->query("select cid,cname,ttype,tfile from {$dbtbpre}enewszttype where ztid='$ztid' order by cid");
  224. ?>
  225. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  226. <html>
  227. <head>
  228. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  229. <title>管理专题子类</title>
  230. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  231. </head>
  232. <body>
  233. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  234. <tr>
  235. <td width="74%">位置:<a href="ListZt.php<?=$ecms_hashur['whehref']?>">管理专题</a> &gt;
  236. <?=$ztr[ztname]?>
  237. &gt; <a href="ZtType.php?ztid=<?=$ztid?><?=$ecms_hashur['whehref']?>">管理专题子类</a></td>
  238. <td width="26%"><div align="right">
  239. <input type="button" name="Submit22" value="增加专题子类" onclick="self.location.href='AddZtType.php?enews=AddZtType&ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>';">
  240. </div></td>
  241. </tr>
  242. </table>
  243. <br>
  244. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  245. <tr class="header">
  246. <td width="6%"><div align="center">ID</div></td>
  247. <td width="27%" height="25"><div align="center">分类名称</div></td>
  248. <td width="48%"><div align="center">页面地址</div></td>
  249. <td width="19%" height="25"><div align="center">操作</div></td>
  250. </tr>
  251. <?
  252. while($r=$empire->fetch($sql))
  253. {
  254. $curl=$ztlink.'/'.$r[tfile].$r[ttype];
  255. ?>
  256. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  257. <td><div align="center">
  258. <?=$r[cid]?>
  259. </div></td>
  260. <td height="25"> <div align="center">
  261. <?=$r[cname]?>
  262. </div></td>
  263. <td><div align="center"><input type="text" name="textfield" value="<?=$curl?>">
  264. <a href="<?=$curl?>" target="_blank">[查看]</a></div></td>
  265. <td height="25"><div align="center">[<a href='AddZtType.php?enews=EditZtType&cid=<?=$r[cid]?>&ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>'>修改</a>]&nbsp;&nbsp;[<a href='ZtType.php?enews=DelZtType&cid=<?=$r[cid]?>&ztid=<?=$ztid?><?=$ecms_hashur['href']?>' onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  266. </tr>
  267. <?
  268. }
  269. db_close();
  270. $empire=null;
  271. ?>
  272. </table>
  273. </body>
  274. </html>