ClassInfoType.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. //验证用户
  9. $lur=is_login();
  10. $logininid=$lur['userid'];
  11. $loginin=$lur['username'];
  12. $loginrnd=$lur['rnd'];
  13. $loginlevel=$lur['groupid'];
  14. $loginadminstyleid=$lur['adminstyleid'];
  15. //ehash
  16. $ecms_hashur=hReturnEcmsHashStrAll();
  17. //验证权限
  18. CheckLevel($logininid,$loginin,$classid,"class");
  19. //设置栏目标题分类
  20. function SetClassInfoType($add,$logininid,$loginin){
  21. global $empire,$dbtbpre;
  22. CheckLevel($logininid,$loginin,$classid,"class");//验证权限
  23. $classid=(int)$add['classid'];
  24. if(empty($classid))
  25. {
  26. printerror("ErrorUrl","history.go(-1)");
  27. }
  28. $cr=$empire->fetch1("select classid,modid,classname,islast from {$dbtbpre}enewsclass where classid='$classid'");
  29. if(!$cr['classid']||!$cr['islast']||!$cr['modid'])
  30. {
  31. printerror("ErrorUrl","history.go(-1)");
  32. }
  33. $noclassinfo=(int)$add['noclassinfo'];
  34. if($noclassinfo==1)
  35. {
  36. $ttids='-';
  37. }
  38. else
  39. {
  40. $typeid=$add['typeid'];
  41. $count=count($typeid);
  42. $ttids='';
  43. if($count)
  44. {
  45. $dh='';
  46. for($i=0;$i<$count;$i++)
  47. {
  48. $tid=(int)$typeid[$i];
  49. if(empty($tid))
  50. {
  51. continue;
  52. }
  53. $ttids.=$dh.$tid;
  54. $dh=',';
  55. }
  56. if($ttids)
  57. {
  58. $ttids=','.$ttids.',';
  59. }
  60. }
  61. }
  62. $sql=$empire->query("update {$dbtbpre}enewsclassadd set ttids='$ttids' where classid='$classid'");
  63. if($sql)
  64. {
  65. insert_dolog("classid=$classid&classname=$cr[classname]");//操作日志
  66. printerror("SetClassInfoTypeSuccess","ClassInfoType.php?classid=$classid".hReturnEcmsHashStrHref2(0));
  67. }
  68. else
  69. {
  70. printerror("DbError","history.go(-1)");
  71. }
  72. }
  73. $enews=$_POST['enews'];
  74. if($enews)
  75. {
  76. hCheckEcmsRHash();
  77. }
  78. if($enews=='SetClassInfoType')
  79. {
  80. SetClassInfoType($_POST,$logininid,$loginin);
  81. }
  82. $classid=(int)$_GET['classid'];
  83. if(!$classid)
  84. {
  85. printerror("ErrorUrl","history.go(-1)");
  86. }
  87. $cr=$empire->fetch1("select classid,bclassid,modid,classname,islast from {$dbtbpre}enewsclass where classid='$classid'");
  88. if(!$cr['classid']||!$cr['islast']||!$cr['modid'])
  89. {
  90. printerror("ErrorUrl","history.go(-1)");
  91. }
  92. $caddr=$empire->fetch1("select ttids from {$dbtbpre}enewsclassadd where classid='$classid'");
  93. $url=$cr['classname'].' &gt; 设置标题分类';
  94. if($cr['bclassid'])
  95. {
  96. $bcr=$empire->fetch1("select classid,classname from {$dbtbpre}enewsclass where classid='$cr[bclassid]'");
  97. $url=$bcr['classname'].' &gt; '.$url;
  98. }
  99. $sql=$empire->query("select typeid,tname from {$dbtbpre}enewsinfotype where mid='$cr[modid]' order by myorder,typeid");
  100. ?>
  101. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  102. <html>
  103. <head>
  104. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  105. <title>设置栏目标题分类</title>
  106. <link href="adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  107. <script>
  108. function CheckAll(form)
  109. {
  110. for (var i=0;i<form.elements.length;i++)
  111. {
  112. var e = form.elements[i];
  113. if (e.name=='chkall'||e.name=='noclassinfo')
  114. {
  115. }
  116. else
  117. {
  118. e.checked = form.chkall.checked;
  119. }
  120. }
  121. }
  122. </script>
  123. </head>
  124. <body>
  125. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  126. <tr>
  127. <td>位置:<?=$url?>
  128. </td>
  129. </tr>
  130. </table>
  131. <br>
  132. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  133. <form name="form1" method="post" action="ClassInfoType.php" onsubmit="return confirm('确认设置?');">
  134. <?=$ecms_hashur['form']?>
  135. <input type="hidden" name="enews" value="SetClassInfoType">
  136. <input type="hidden" name="classid" value="<?=$classid?>">
  137. <tr class="header">
  138. <td width="10%"><div align="center">选择 </div></td>
  139. <td width="59%" height="25"><div align="center">分类名称</div></td>
  140. </tr>
  141. <?php
  142. while($r=$empire->fetch($sql))
  143. {
  144. $checked='';
  145. if(strstr($caddr['ttids'],','.$r['typeid'].','))
  146. {
  147. $checked=' checked';
  148. }
  149. ?>
  150. <tr bgcolor="#FFFFFF">
  151. <td><div align="center">
  152. <input name="typeid[]" type="checkbox" id="typeid[]" value="<?=$r['typeid']?>"<?=$checked?>>
  153. </div></td>
  154. <td height="25">
  155. <?=$r['tname']?>
  156. (
  157. <?=$r['typeid']?>
  158. )</td>
  159. </tr>
  160. <?php
  161. }
  162. db_close();
  163. $empire=null;
  164. ?>
  165. <tr bgcolor="#FFFFFF">
  166. <td><div align="center">
  167. <input name="noclassinfo" type="checkbox" id="noclassinfo" value="1"<?=$caddr['ttids']=='-'?' checked':''?>>
  168. </div></td>
  169. <td height="25"><strong>本栏目不使用标题分类</strong></td>
  170. </tr>
  171. <tr bgcolor="#FFFFFF">
  172. <td><div align="center">
  173. <input type=checkbox name=chkall value=on onclick=CheckAll(this.form)>
  174. </div></td>
  175. <td height="25"><input type="submit" name="Submit" value="提 交"> &nbsp;&nbsp;
  176. <input type="reset" name="Submit2" value="重置"></td>
  177. </tr>
  178. </form>
  179. </table>
  180. </body>
  181. </html>