AddInfoType.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  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,"infotype");
  20. $enews=RepPostStr($_GET['enews'],1);
  21. $url="<a href='InfoType.php".$ecms_hashur['whehref']."'>管理标题分类</a>&nbsp;>&nbsp;增加标题分类";
  22. $postword='增加标题分类';
  23. //初使化数据
  24. $r[myorder]=0;
  25. $r[reorder]="newstime DESC";
  26. $r[maxnum]=0;
  27. $r[tnum]=25;
  28. $r[repagenum]=0;
  29. $r[ttype]=".html";
  30. $r[newline]=10;
  31. $r[hotline]=10;
  32. $r[goodline]=10;
  33. $r[hotplline]=10;
  34. $r[firstline]=10;
  35. $pripath='t/';
  36. //复制
  37. $docopy=RepPostStr($_GET['docopy'],1);
  38. if($docopy&&$enews=="AddInfoType")
  39. {
  40. $copyclass=1;
  41. }
  42. $ecmsfirstpost=1;
  43. //修改
  44. if($enews=="EditInfoType"||$copyclass)
  45. {
  46. $ecmsfirstpost=0;
  47. if($copyclass)
  48. {
  49. $thisdo="复制";
  50. }
  51. else
  52. {
  53. $thisdo="修改";
  54. }
  55. $typeid=(int)$_GET['typeid'];
  56. $r=$empire->fetch1("select * from {$dbtbpre}enewsinfotype where typeid='$typeid'");
  57. $url="<a href='InfoType.php".$ecms_hashur['whehref']."'>管理标题分类</a>&nbsp;>&nbsp;".$thisdo."标题分类:".$r[tname];
  58. $postword=$thisdo.'标题分类';
  59. //分类目录
  60. $mycr=GetPathname($r[tpath]);
  61. $pripath=$mycr[1];
  62. $tpath=$mycr[0];
  63. //复制分类
  64. if($copyclass)
  65. {
  66. $r[tname].='(1)';
  67. $tpath.='1';
  68. }
  69. }
  70. //列表模板
  71. $mod_options='';
  72. $listtemp_options='';
  73. $msql=$empire->query("select mid,mname,usemod from {$dbtbpre}enewsmod order by myorder,mid");
  74. while($mr=$empire->fetch($msql))
  75. {
  76. if(empty($mr[usemod]))
  77. {
  78. if($mr[mid]==$r[mid])
  79. {$m_d=" selected";}
  80. else
  81. {$m_d="";}
  82. $mod_options.="<option value=".$mr[mid].$m_d.">".$mr[mname]."</option>";
  83. }
  84. //列表模板
  85. $listtemp_options.="<option value=0 style='background:#99C4E3'>".$mr[mname]."</option>";
  86. $l_sql=$empire->query("select tempid,tempname from ".GetTemptb("enewslisttemp")." where modid='$mr[mid]'");
  87. while($l_r=$empire->fetch($l_sql))
  88. {
  89. if($l_r[tempid]==$r[listtempid])
  90. {$l_d=" selected";}
  91. else
  92. {$l_d="";}
  93. $listtemp_options.="<option value=".$l_r[tempid].$l_d."> |-".$l_r[tempname]."</option>";
  94. }
  95. }
  96. //js模板
  97. $jstemp='';
  98. $jstempsql=$empire->query("select tempid,tempname from ".GetTemptb("enewsjstemp")." order by tempid");
  99. while($jstempr=$empire->fetch($jstempsql))
  100. {
  101. $select="";
  102. if($r[jstempid]==$jstempr[tempid])
  103. {
  104. $select=" selected";
  105. }
  106. $jstemp.="<option value='".$jstempr[tempid]."'".$select.">".$jstempr[tempname]."</option>";
  107. }
  108. //优化方案
  109. $yh_options='';
  110. $yhsql=$empire->query("select id,yhname from {$dbtbpre}enewsyh order by id");
  111. while($yhr=$empire->fetch($yhsql))
  112. {
  113. $select='';
  114. if($r[yhid]==$yhr[id])
  115. {
  116. $select=' selected';
  117. }
  118. $yh_options.="<option value='".$yhr[id]."'".$select.">".$yhr[yhname]."</option>";
  119. }
  120. //当前使用的模板组
  121. $thegid=GetDoTempGid();
  122. ?>
  123. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  124. <html>
  125. <head>
  126. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  127. <title>增加标题分类</title>
  128. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  129. <script>
  130. //检查
  131. function CheckForm(obj){
  132. if(obj.tname.value=='')
  133. {
  134. alert("请输入分类名称");
  135. obj.tname.focus();
  136. return false;
  137. }
  138. if(obj.tpath.value=="")
  139. {
  140. alert("请输入分类目录");
  141. obj.tpath.focus();
  142. return false;
  143. }
  144. if(obj.listtempid.value==0)
  145. {
  146. alert("请选择列表模板");
  147. obj.listtempid.focus();
  148. return false;
  149. }
  150. }
  151. </script>
  152. </head>
  153. <body>
  154. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  155. <tr>
  156. <td>位置:
  157. <?=$url?>
  158. </td>
  159. </tr>
  160. </table>
  161. <br>
  162. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  163. <form name="form1" method="post" action="InfoType.php" onsubmit="return CheckForm(document.form1);">
  164. <?=$ecms_hashur['form']?>
  165. <tr class="header">
  166. <td height="25" colspan="2">
  167. <?=$postword?>
  168. <input type=hidden name=enews value=<?=$enews?>> </td>
  169. </tr>
  170. <tr>
  171. <td height="25" colspan="2">基本属性</td>
  172. </tr>
  173. <tr>
  174. <td width="24%" height="25" bgcolor="#FFFFFF">分类名称(*)</td>
  175. <td width="76%" height="25" bgcolor="#FFFFFF"> <input name="tname" type="text" id="tname" value="<?=$r[tname]?>" size="38">
  176. <?
  177. if($enews=="AddInfoType"||$docopy)
  178. {
  179. ?>
  180. <input type="button" name="Submit5" value="生成拼音目录" onclick="window.open('../GetPinyin.php?<?=$ecms_hashur['href']?>&hz='+document.form1.tname.value+'&returnform=opener.document.form1.tpath.value','','width=160,height=100');">
  181. <?
  182. }
  183. ?>
  184. <input name="typeid" type="hidden" id="typeid" value="<?=$typeid?>"> </td>
  185. </tr>
  186. <tr>
  187. <td height="25" valign="top" bgcolor="#FFFFFF">存放文件夹(*)
  188. <input name="oldtpath" type="hidden" id="oldtpath" value="<?=$r[tpath]?>">
  189. <input name="oldpripath" type="hidden" id="oldpripath" value="<?=$pripath?>">
  190. </td>
  191. <td bgcolor="#FFFFFF"> <table border="0" cellspacing="1" cellpadding="3">
  192. <tr bgcolor="DBEAF5">
  193. <td bgcolor="DBEAF5">&nbsp;</td>
  194. <td bgcolor="DBEAF5">上层目录</td>
  195. <td bgcolor="DBEAF5">本分类目录</td>
  196. <td bgcolor="DBEAF5">&nbsp;</td>
  197. </tr>
  198. <tr>
  199. <td><div align="right">根目录/</div></td>
  200. <td><input name="pripath" type="text" id="pripath" value="<?=$pripath?>" size="30"></td>
  201. <td><input name="tpath" type="text" id="tpath" value="<?=$tpath?>" size="16"></td>
  202. <td><input type="button" name="Submit3" value="检测目录" onclick="javascript:window.open('../ecmscom.php?<?=$ecms_hashur['href']?>&enews=CheckPath&pripath='+document.form1.pripath.value+'&classpath='+document.form1.tpath.value,'','width=100,height=100,top=250,left=450');"></td>
  203. </tr>
  204. </table></td>
  205. </tr>
  206. <tr>
  207. <td height="25" bgcolor="#FFFFFF">绑定的系统模型</td>
  208. <td bgcolor="#FFFFFF"><select name="mid" id="mid">
  209. <?=$mod_options?>
  210. </select> <input type="button" name="Submit6" value="管理系统模型" onclick="window.open('../db/ListTable.php<?=$ecms_hashur['whehref']?>');">
  211. *
  212. <input name="oldmodid" type="hidden" id="oldmodid" value="<?=$r[modid]?>"></td>
  213. </tr>
  214. <tr>
  215. <td height="25" bgcolor="#FFFFFF">使用优化方案</td>
  216. <td bgcolor="#FFFFFF"><select name="yhid" id="yhid">
  217. <option name="0">不使用</option>
  218. <?=$yh_options?>
  219. </select> <input type="button" name="Submit63" value="管理优化方案" onclick="window.open('../db/ListYh.php<?=$ecms_hashur['whehref']?>');"></td>
  220. </tr>
  221. <tr>
  222. <td height="25" bgcolor="#FFFFFF">分类缩略图</td>
  223. <td bgcolor="#FFFFFF"> <input name="timg" type="text" id="timg" value="<?=$r[timg]?>" size="38">
  224. <a onclick="window.open('../ecmseditor/FileMain.php?modtype=5&type=1&classid=&doing=2&field=timg<?=$ecms_hashur['ehref']?>','','width=700,height=550,scrollbars=yes');" title="选择已上传的图片"><img src="../../data/images/changeimg.gif" width="22" height="22" border="0" align="absbottom"></a></td>
  225. </tr>
  226. <tr>
  227. <td height="25" bgcolor="#FFFFFF">网页关键字</td>
  228. <td bgcolor="#FFFFFF"> <input name="pagekey" type="text" id="pagekey" value="<?=$r[pagekey]?>" size="38"></td>
  229. </tr>
  230. <tr>
  231. <td height="25" valign="top" bgcolor="#FFFFFF">分类简介</td>
  232. <td bgcolor="#FFFFFF"> <textarea name="intro" cols="70" rows="8" id="intro"><?=ehtmlspecialchars(stripSlashes($r[intro]))?></textarea></td>
  233. </tr>
  234. <tr>
  235. <td height="25" bgcolor="#FFFFFF">排序</td>
  236. <td bgcolor="#FFFFFF"><input name="myorder" type="text" id="myorder" value="<?=$r[myorder]?>" size="38">
  237. <font color="#666666"> (值越小越前面)</font></td>
  238. </tr>
  239. <tr>
  240. <td height="25" colspan="2">页面设置</td>
  241. </tr>
  242. <tr>
  243. <td height="25" bgcolor="#FFFFFF">页面模式</td>
  244. <td height="25" bgcolor="#FFFFFF"><input type="radio" name="listdt" value="0"<?=$r[listdt]==0?' checked':''?>>
  245. 静态页面
  246. <input type="radio" name="listdt" value="1"<?=$r[listdt]==1?' checked':''?>>
  247. 动态页面</td>
  248. </tr>
  249. <tr>
  250. <td height="25" bgcolor="#FFFFFF">所用列表模板(*)</td>
  251. <td height="25" bgcolor="#FFFFFF"> <select name="listtempid" id="listtempid">
  252. <?=$listtemp_options?>
  253. </select> <input type="button" name="Submit622" value="管理列表模板" onclick="window.open('../template/ListListtemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');">
  254. *</td>
  255. </tr>
  256. <tr>
  257. <td height="25" bgcolor="#FFFFFF">列表式页面排序方式</td>
  258. <td height="25" bgcolor="#FFFFFF"><input name="reorder" type="text" id="reorder" value="<?=$r[reorder]?>" size="38">
  259. <select name="orderselect" onchange="document.form1.reorder.value=this.value">
  260. <option value="newstime DESC"></option>
  261. <option value="newstime DESC">按发布时间降序排序</option>
  262. <option value="id DESC">按ID降序排序</option>
  263. <option value="onclick DESC">按点击率降序排序</option>
  264. <option value="totaldown DESC">按下载数降序排序</option>
  265. <option value="plnum DESC">按评论数降序排序</option>
  266. </select></td>
  267. </tr>
  268. <tr>
  269. <td height="25" bgcolor="#FFFFFF">文件扩展名</td>
  270. <td height="25" bgcolor="#FFFFFF"><input name="ttype" type="text" id="ttype" value="<?=$r[ttype]?>" size="38">
  271. <select name="select" onchange="document.form1.ttype.value=this.value">
  272. <option value=".html">扩展名</option>
  273. <option value=".html">.html</option>
  274. <option value=".htm">.htm</option>
  275. <option value=".php">.php</option>
  276. <option value=".shtml">.shtml</option>
  277. </select> <font color="#666666">(如.html,.xml,.htm等)</font></td>
  278. </tr>
  279. <tr>
  280. <td height="25" bgcolor="#FFFFFF">显示总记录数</td>
  281. <td height="25" bgcolor="#FFFFFF"><input name="maxnum" type="text" id="maxnum" value="<?=$r[maxnum]?>" size="38">
  282. 条 <font color="#666666">(0为显示所有记录)</font></td>
  283. </tr>
  284. <tr>
  285. <td height="25" bgcolor="#FFFFFF">生成静态页数</td>
  286. <td height="25" bgcolor="#FFFFFF"><input name="repagenum" type="text" id="repagenum" value="<?=$r[repagenum]?>" size="38">
  287. 页<font color="#666666">(超过分页采用动态链接,0为不限)</font></td>
  288. </tr>
  289. <tr>
  290. <td height="25" bgcolor="#FFFFFF">每页显示记录数</td>
  291. <td height="25" bgcolor="#FFFFFF"><input name="tnum" type="text" id="tnum" value="<?=$r[tnum]?>" size="38">
  292. 条记录</td>
  293. </tr>
  294. <tr>
  295. <td height="25" colspan="2">JS相关设置</td>
  296. </tr>
  297. <tr>
  298. <td height="25" bgcolor="#FFFFFF">是否生成JS调用</td>
  299. <td bgcolor="#FFFFFF"> <input type="radio" name="nrejs" value="0"<?=$r[nrejs]==0?' checked':''?>>
  300. 生成
  301. <input type="radio" name="nrejs" value="1"<?=$r[nrejs]==1?' checked':''?>>
  302. 不生成</td>
  303. </tr>
  304. <tr>
  305. <td height="25" bgcolor="#FFFFFF">所用JS模板</td>
  306. <td bgcolor="#FFFFFF"> <select name="jstempid" id="jstempid">
  307. <?=$jstemp?>
  308. </select> <input type="button" name="Submit62223" value="管理JS模板" onclick="window.open('../template/ListJstemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');"></td>
  309. </tr>
  310. <tr>
  311. <td height="25" bgcolor="#FFFFFF">最新信息JS显示</td>
  312. <td height="25" bgcolor="#FFFFFF"> <input name="newline" type="text" id="newline" value="<?=$r[newline]?>" size="38">
  313. 条记录</td>
  314. </tr>
  315. <tr>
  316. <td height="25" bgcolor="#FFFFFF">热门信息JS显示</td>
  317. <td height="25" bgcolor="#FFFFFF"> <input name="hotline" type="text" id="hotline" value="<?=$r[hotline]?>" size="38">
  318. 条记录</td>
  319. </tr>
  320. <tr>
  321. <td height="25" bgcolor="#FFFFFF">推荐信息JS显示</td>
  322. <td height="25" bgcolor="#FFFFFF"> <input name="goodline" type="text" id="goodline" value="<?=$r[goodline]?>" size="38">
  323. 条记录</td>
  324. </tr>
  325. <tr>
  326. <td height="25" bgcolor="#FFFFFF">热门评论信息js显示</td>
  327. <td bgcolor="#FFFFFF"> <input name="hotplline" type="text" id="hotplline" value="<?=$r[hotplline]?>" size="38">
  328. 条记录</td>
  329. </tr>
  330. <tr>
  331. <td height="25" bgcolor="#FFFFFF">头条信息js显示</td>
  332. <td bgcolor="#FFFFFF"> <input name="firstline" type="text" id="firstline" value="<?=$r[firstline]?>" size="38">
  333. 条记录</td>
  334. </tr>
  335. <tr>
  336. <td height="25" bgcolor="#FFFFFF"> <div align="center"></div></td>
  337. <td bgcolor="#FFFFFF"> <input type="submit" name="Submit" value="提交"> &nbsp;&nbsp;
  338. <input type="reset" name="Submit2" value="重置"> </td>
  339. </tr>
  340. </form>
  341. </table>
  342. </body>
  343. </html>
  344. <?php
  345. db_close();
  346. $empire=null;
  347. ?>