AddSp.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  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. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"sp");
  20. $enews=ehtmlspecialchars($_GET['enews']);
  21. $postword='增加碎片';
  22. $noteditword='<font color="#666666">(设置后不可修改)</font>';
  23. $disabled='';
  24. $sptypehidden='';
  25. $r[maxnum]=0;
  26. $url="<a href=ListSp.php".$ecms_hashur['whehref'].">管理碎片</a> &gt; 增加碎片";
  27. $fcid=(int)$_GET['fcid'];
  28. $fclassid=(int)$_GET['fclassid'];
  29. $fsptype=(int)$_GET['fsptype'];
  30. $r['spfile']='html/sp/'.time().'.html';
  31. $spid=(int)$_GET['spid'];
  32. if($enews=='EditSp')
  33. {
  34. $filepass=$spid;
  35. }
  36. else
  37. {
  38. $filepass=ReturnTranFilepass();
  39. }
  40. //复制
  41. if($enews=="AddSp"&&$_GET['docopy'])
  42. {
  43. $r=$empire->fetch1("select * from {$dbtbpre}enewssp where spid='$spid'");
  44. $url="<a href=ListSp.php".$ecms_hashur['whehref'].">管理碎片</a> &gt; 复制碎片:<b>".$r[spname]."</b>";
  45. $username=substr($r[username],1,-1);
  46. }
  47. //修改
  48. if($enews=="EditSp")
  49. {
  50. $r=$empire->fetch1("select * from {$dbtbpre}enewssp where spid='$spid'");
  51. $postword='修改碎片';
  52. $noteditword='';
  53. $disabled=' disabled';
  54. $sptypehidden='<input type="hidden" name="sptype" value="'.$r[sptype].'">';
  55. $url="<a href=ListSp.php".$ecms_hashur['whehref'].">管理碎片</a> &gt; 修改碎片:<b>".$r[spname]."</b>";
  56. $username=substr($r[username],1,-1);
  57. }
  58. //标签模板
  59. $bqtemp='';
  60. $bqtempsql=$empire->query("select tempid,tempname from ".GetTemptb("enewsbqtemp")." order by tempid");
  61. while($bqtempr=$empire->fetch($bqtempsql))
  62. {
  63. $select="";
  64. if($r[tempid]==$bqtempr[tempid])
  65. {
  66. $select=" selected";
  67. }
  68. $bqtemp.="<option value='".$bqtempr[tempid]."'".$select.">".$bqtempr[tempname]."</option>";
  69. }
  70. //栏目
  71. $options=ShowClass_AddClass("",$r[classid],0,"|-",0,0);
  72. //分类
  73. $scstr='';
  74. $scsql=$empire->query("select classid,classname from {$dbtbpre}enewsspclass order by classid");
  75. while($scr=$empire->fetch($scsql))
  76. {
  77. $select="";
  78. if($scr[classid]==$r[cid])
  79. {
  80. $select=" selected";
  81. }
  82. $scstr.="<option value='".$scr[classid]."'".$select.">".$scr[classname]."</option>";
  83. }
  84. //用户组
  85. $group='';
  86. $groupsql=$empire->query("select groupid,groupname from {$dbtbpre}enewsgroup order by groupid");
  87. while($groupr=$empire->fetch($groupsql))
  88. {
  89. $select='';
  90. if(strstr($r[groupid],','.$groupr[groupid].','))
  91. {
  92. $select=' selected';
  93. }
  94. $group.="<option value='".$groupr[groupid]."'".$select.">".$groupr[groupname]."</option>";
  95. }
  96. //部门
  97. $userclass='';
  98. $ucsql=$empire->query("select classid,classname from {$dbtbpre}enewsuserclass order by classid");
  99. while($ucr=$empire->fetch($ucsql))
  100. {
  101. $select='';
  102. if(strstr($r[userclass],','.$ucr[classid].','))
  103. {
  104. $select=' selected';
  105. }
  106. $userclass.="<option value='".$ucr[classid]."'".$select.">".$ucr[classname]."</option>";
  107. }
  108. //当前使用的模板组
  109. $thegid=GetDoTempGid();
  110. db_close();
  111. $empire=null;
  112. ?>
  113. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  114. <html>
  115. <head>
  116. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  117. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  118. <title>碎片</title>
  119. <script>
  120. function selectalls(doselect,formvar)
  121. {
  122. var bool=doselect==1?true:false;
  123. var selectform=document.getElementById(formvar);
  124. for(var i=0;i<selectform.length;i++)
  125. {
  126. selectform.all[i].selected=bool;
  127. }
  128. }
  129. </script>
  130. </head>
  131. <body>
  132. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  133. <tr>
  134. <td>位置:<?=$url?></td>
  135. </tr>
  136. </table>
  137. <form name="form1" method="post" action="ListSp.php">
  138. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  139. <?=$ecms_hashur['form']?>
  140. <tr class="header">
  141. <td height="25" colspan="2">
  142. <?=$postword?>
  143. <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="spid" type="hidden" id="spid" value="<?=$spid?>">
  144. <input name="fcid" type="hidden" id="fcid" value="<?=$fcid?>"> <input name="fclassid" type="hidden" id="fclassid" value="<?=$fclassid?>">
  145. <input name="fsptype" type="hidden" id="fsptype" value="<?=$fsptype?>">
  146. <input name="filepass" type="hidden" id="filepass" value="<?=$filepass?>"></td>
  147. </tr>
  148. <tr>
  149. <td height="25" bgcolor="#FFFFFF">碎片类型:</td>
  150. <td height="25" bgcolor="#FFFFFF"> <select name="sptype" id="sptype"<?=$disabled?>>
  151. <option value="1"<?=$r[sptype]==1?' selected':''?>>静态信息碎片</option>
  152. <option value="2"<?=$r[sptype]==2?' selected':''?>>动态信息碎片</option>
  153. <option value="3"<?=$r[sptype]==3?' selected':''?>>代码碎片</option>
  154. </select>
  155. <?=$noteditword?>
  156. <?=$sptypehidden?>
  157. </td>
  158. </tr>
  159. <tr>
  160. <td width="18%" height="25" bgcolor="#FFFFFF">碎片名称:</td>
  161. <td width="82%" height="25" bgcolor="#FFFFFF"> <input name="spname" type="text" id="spname" value="<?=$r[spname]?>" size="42">
  162. </td>
  163. </tr>
  164. <tr>
  165. <td height="25" bgcolor="#FFFFFF">碎片变量名:</td>
  166. <td height="25" bgcolor="#FFFFFF"> <input name="varname" type="text" id="varname" value="<?=$r[varname]?>" size="42"></td>
  167. </tr>
  168. <tr>
  169. <td height="25" bgcolor="#FFFFFF">所属分类:</td>
  170. <td height="25" bgcolor="#FFFFFF"> <select name="cid" id="cid">
  171. <option value="0">不隶属于任何类别</option>
  172. <?=$scstr?>
  173. </select> <input type="button" name="Submit6222322" value="管理分类" onclick="window.open('ListSpClass.php<?=$ecms_hashur['whehref']?>');"></td>
  174. </tr>
  175. <tr>
  176. <td height="25" bgcolor="#FFFFFF">隶属信息栏目:</td>
  177. <td height="25" bgcolor="#FFFFFF"> <select name="classid" id="classid">
  178. <option value="0">隶属于所有栏目</option>
  179. <?=$options?>
  180. </select> <input type="button" name="Submit622232" value="管理栏目" onclick="window.open('../ListClass.php<?=$ecms_hashur['whehref']?>');">
  181. <font color="#666666">(选择父栏目,将应用于子栏目)</font></td>
  182. </tr>
  183. <tr>
  184. <td height="25" bgcolor="#FFFFFF">最大信息数量:</td>
  185. <td height="25" bgcolor="#FFFFFF"> <input name="maxnum" type="text" id="spname3" value="<?=$r[maxnum]?>" size="42">
  186. <font color="#666666">(0为不限)</font></td>
  187. </tr>
  188. <tr>
  189. <td height="25" bgcolor="#FFFFFF">使用标签模板:</td>
  190. <td height="25" bgcolor="#FFFFFF"> <select name="tempid" id="tempid">
  191. <?=$bqtemp?>
  192. </select> <input type="button" name="Submit6222323" value="管理标签模板" onclick="window.open('../template/ListBqtemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');"></td>
  193. </tr>
  194. <tr>
  195. <td height="25" bgcolor="#FFFFFF">是否生成碎片文件:</td>
  196. <td height="25" bgcolor="#FFFFFF"><input type="radio" name="refile" value="0"<?=$r[refile]==0?' checked':''?>>
  197. 不生成
  198. <input type="radio" name="refile" value="1"<?=$r[refile]==1?' checked':''?>>
  199. 生成</td>
  200. </tr>
  201. <tr>
  202. <td height="25" bgcolor="#FFFFFF">生成碎片文件名:</td>
  203. <td height="25" bgcolor="#FFFFFF">/
  204. <input name="spfile" type="text" id="spfile" value="<?=$r[spfile]?>" size="42">
  205. <input name="oldspfile" type="hidden" id="oldspfile" value="<?=$r[spfile]?>"> </td>
  206. </tr>
  207. <tr>
  208. <td height="25" bgcolor="#FFFFFF">生成碎片文件内容设置:</td>
  209. <td height="25" bgcolor="#FFFFFF">显示信息数量:
  210. <input name="spfileline" type="text" id="spfileline" value="<?=$r[spfileline]?>" size="6">
  211. ,标题截取字数:
  212. <input name="spfilesub" type="text" id="spfilesub" value="<?=$r[spfilesub]?>" size="6"></td>
  213. </tr>
  214. <tr>
  215. <td height="25" bgcolor="#FFFFFF">碎片效果图:</td>
  216. <td height="25" bgcolor="#FFFFFF"> <input name="sppic" type="text" id="sppic" value="<?=$r[sppic]?>" size="42">
  217. <a onclick="window.open('../ecmseditor/FileMain.php?<?=$ecms_hashur['ehref']?>&modtype=7&type=1&classid=&doing=2&field=sppic&filepass=<?=$filepass?>&sinfo=1','','width=700,height=550,scrollbars=yes');" title="选择已上传的图片"><img src="../../data/images/changeimg.gif" alt="选择/上传图片" width="22" height="22" border="0" align="absbottom"></a></td>
  218. </tr>
  219. <tr>
  220. <td height="25" bgcolor="#FFFFFF">碎片描述:</td>
  221. <td height="25" bgcolor="#FFFFFF"> <textarea name="spsay" cols="60" rows="5" id="varname3"><?=ehtmlspecialchars($r[spsay])?></textarea></td>
  222. </tr>
  223. <tr>
  224. <td height="25" bgcolor="#FFFFFF">可越权限推送:</td>
  225. <td height="25" bgcolor="#FFFFFF"><input type="radio" name="cladd" value="0"<?=$r[cladd]==0?' checked':''?>>
  226. <input type="radio" name="cladd" value="1"<?=$r[cladd]==1?' checked':''?>>
  227. 否 <font color="#666666">(不在权限设置范围内的用户也能推送信息)</font></td>
  228. </tr>
  229. <tr>
  230. <td height="25" bgcolor="#FFFFFF">是否开启:</td>
  231. <td height="25" bgcolor="#FFFFFF"><input type="radio" name="isclose" value="0"<?=$r[isclose]==0?' checked':''?>>
  232. <input type="radio" name="isclose" value="1"<?=$r[isclose]==1?' checked':''?>>
  233. 否</td>
  234. </tr>
  235. <tr>
  236. <td height="25" colspan="2">权限设置</td>
  237. </tr>
  238. <tr>
  239. <td height="25" bgcolor="#FFFFFF">用户组:</td>
  240. <td height="25" bgcolor="#FFFFFF"> <select name="groupid[]" size="5" multiple id="groupidselect" style="width:180">
  241. <?=$group?>
  242. </select>
  243. [<a href="#empirecms" onclick="selectalls(0,'groupidselect')">全部取消</a>]</td>
  244. </tr>
  245. <tr>
  246. <td height="25" bgcolor="#FFFFFF">部门:</td>
  247. <td height="25" bgcolor="#FFFFFF"> <select name="userclass[]" size="5" multiple id="userclassselect" style="width:180">
  248. <?=$userclass?>
  249. </select>
  250. [<a href="#empirecms" onclick="selectalls(0,'userclassselect')">全部取消</a>]</td>
  251. </tr>
  252. <tr>
  253. <td height="25" bgcolor="#FFFFFF">用户:</td>
  254. <td height="25" bgcolor="#FFFFFF"> <input name="username" type="text" id="username" value="<?=$username?>" size="42">
  255. <font color="#666666">
  256. <input type="button" name="Submit3" value="选择" onclick="window.open('../ChangeUser.php?field=username&form=form1<?=$ecms_hashur['ehref']?>','','width=300,height=520,scrollbars=yes');">
  257. (多个用户用“,”逗号隔开)</font></td>
  258. </tr>
  259. <tr>
  260. <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
  261. <td height="25" bgcolor="#FFFFFF"> <input type="submit" name="Submit" value="提交">
  262. <input type="reset" name="Submit2" value="重置"></td>
  263. </tr>
  264. </table>
  265. </form>
  266. </body>
  267. </html>