EditInfoSimple.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require("../../data/dbcache/class.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. $ecmscheck=(int)$_GET['ecmscheck'];
  21. $addecmscheck='';
  22. $indexchecked=1;
  23. if($ecmscheck)
  24. {
  25. $addecmscheck='&ecmscheck='.$ecmscheck;
  26. $indexchecked=0;
  27. }
  28. //是否关闭
  29. $isclose=(int)$_GET['isclose'];
  30. if($isclose)
  31. {
  32. $reload=(int)$_GET['reload'];
  33. $reloadjs='';
  34. if($reload)
  35. {
  36. $reloadjs='opener.parent.main.location.reload();';
  37. }
  38. echo"<script>".$reloadjs."window.close();</script>";
  39. exit();
  40. }
  41. $classid=(int)$_GET['classid'];
  42. if(empty($class_r[$classid][classid]))
  43. {
  44. printerror("ErrorUrl","history.go(-1)");
  45. }
  46. //验证权限
  47. $doselfinfo=CheckLevel($logininid,$loginin,$classid,"news");
  48. if(!$class_r[$classid][tbname]||!$class_r[$classid][classid])
  49. {
  50. printerror("ErrorUrl","history.go(-1)");
  51. }
  52. //非终极栏目
  53. if(!$class_r[$classid]['islast'])
  54. {
  55. printerror("AddInfoErrorClassid","history.go(-1)");
  56. }
  57. $bclassid=$class_r[$classid][bclassid];
  58. $id=(int)$_GET['id'];
  59. //附件验证码
  60. if(!$doselfinfo['doeditinfo'])//编辑权限
  61. {
  62. printerror("NotEditInfoLevel","EditInfoSimple.php?isclose=1".$ecms_hashur['ehref']);
  63. }
  64. $filepass=$id;
  65. $ecmsfirstpost=0;
  66. //模型
  67. $modid=$class_r[$classid][modid];
  68. $enter=$emod_r[$modid]['enter'];
  69. //会员组
  70. $sql1=$empire->query("select groupid,groupname from {$dbtbpre}enewsmembergroup order by level");
  71. while($l_r=$empire->fetch($sql1))
  72. {
  73. $ygroup.="<option value=".$l_r[groupid].">".$l_r[groupname]."</option>";
  74. }
  75. //初始化数据
  76. $r=array();
  77. $todaytime=date("Y-m-d H:i:s");
  78. //-----------------------------------------修改信息
  79. //索引表
  80. $index_r=$empire->fetch1("select classid,id,checked from {$dbtbpre}ecms_".$class_r[$classid][tbname]."_index where id='$id' limit 1");
  81. if(!$index_r['id']||$index_r['classid']!=$classid)
  82. {
  83. printerror("ErrorUrl","history.go(-1)");
  84. }
  85. //返回表
  86. $infotb=ReturnInfoMainTbname($class_r[$classid][tbname],$index_r['checked']);
  87. //主表
  88. $r=$empire->fetch1("select * from ".$infotb." where id='$id' limit 1");
  89. //返回表信息
  90. $infodatatb=ReturnInfoDataTbname($class_r[$classid][tbname],$index_r['checked'],$r['stb']);
  91. //副表
  92. $finfor=$empire->fetch1("select closepl from ".$infodatatb." where id='$id'");
  93. $r=array_merge($r,$finfor);
  94. //签发表
  95. if($r[isqf])
  96. {
  97. $wfinfor=$empire->fetch1("select tstatus,checktno from {$dbtbpre}enewswfinfo where id='$id' and classid='$classid' limit 1");
  98. }
  99. //只能编辑自己的信息
  100. if($doselfinfo['doselfinfo']&&($r[userid]<>$logininid||$r[ismember]))
  101. {
  102. printerror("NotDoSelfinfo","EditInfoSimple.php?isclose=1".$ecms_hashur['ehref']);
  103. }
  104. //已审核信息不可修改
  105. if($doselfinfo['docheckedit']&&$index_r['checked'])
  106. {
  107. printerror("NotEditCheckInfoLevel","EditInfoSimple.php?isclose=1".$ecms_hashur['ehref']);
  108. }
  109. //时间
  110. $newstime=$r['newstime'];
  111. $r['newstime']=date("Y-m-d H:i:s",$r['newstime']);
  112. //链接地址
  113. $titleurl=$r['titleurl'];
  114. if(!$r['isurl'])
  115. {
  116. $r['titleurl']='';
  117. }
  118. //会员组
  119. $group=str_replace(" value=".$r[groupid].">"," value=".$r[groupid]." selected>",$ygroup);
  120. //标题属性
  121. if(strstr($r[titlefont],','))
  122. {
  123. $tfontr=explode(',',$r[titlefont]);
  124. $r[titlecolor]=$tfontr[0];
  125. $r[titlefont]=$tfontr[1];
  126. }
  127. if(strstr($r[titlefont],"b|"))
  128. {
  129. $titlefontb=" checked";
  130. }
  131. if(strstr($r[titlefont],"i|"))
  132. {
  133. $titlefonti=" checked";
  134. }
  135. if(strstr($r[titlefont],"s|"))
  136. {
  137. $titlefonts=" checked";
  138. }
  139. //标题分类
  140. $cttidswhere='';
  141. $tts='';
  142. $caddr=$empire->fetch1("select ttids from {$dbtbpre}enewsclassadd where classid='$classid'");
  143. if($caddr['ttids']!='-')
  144. {
  145. if($caddr['ttids']&&$caddr['ttids']!=',')
  146. {
  147. $cttidswhere=' and typeid in ('.substr($caddr['ttids'],1,-1).')';
  148. }
  149. $ttsql=$empire->query("select typeid,tname from {$dbtbpre}enewsinfotype where mid='$modid'".$cttidswhere." order by myorder");
  150. while($ttr=$empire->fetch($ttsql))
  151. {
  152. $select='';
  153. if($ttr[typeid]==$r[ttid])
  154. {
  155. $select=' selected';
  156. }
  157. $tts.="<option value='$ttr[typeid]'".$select.">$ttr[tname]</option>";
  158. }
  159. }
  160. //栏目链接
  161. $getcurlr['classid']=$classid;
  162. $classurl=sys_ReturnBqClassname($getcurlr,9);
  163. //当前使用的模板组
  164. $thegid=GetDoTempGid();
  165. $phpmyself=urlencode(eReturnSelfPage(1));
  166. //返回头条和推荐级别名称
  167. $ftnr=ReturnFirsttitleNameList($r['firsttitle'],$r['isgood']);
  168. ?>
  169. <html>
  170. <head>
  171. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  172. <title><?=stripSlashes($r[title])?></title>
  173. <link rel="stylesheet" href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" type="text/css">
  174. <script>
  175. function foreColor(){
  176. if(!Error()) return;
  177. var arr = showModalDialog("../../data/html/selcolor.html", "", "dialogWidth:296px; dialogHeight:280px; status:0");
  178. if (arr != null) document.add.titlecolor.value=arr;
  179. else document.add.titlecolor.focus();
  180. }
  181. </script>
  182. <script type="text/javascript" src="../ecmseditor/js/jscolor/jscolor.js"></script>
  183. <script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  184. </head>
  185. <body bgcolor="#FFFFFF" text="#000000">
  186. <table width="100%" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  187. <form name="add" method="post" action="../ecmsinfo.php">
  188. <?=$ecms_hashur['form']?>
  189. <tr class="header">
  190. <td height="25" colspan="2"> 快速修改信息基本属性
  191. <input type=hidden value=EditInfoSimple name=enews> <input type=hidden value=<?=$classid?> name=classid>
  192. <input type=hidden value=<?=$bclassid?> name=bclassid> <input name=id type=hidden value=<?=$id?>>
  193. <input type=hidden value="<?=$r[newspath]?>" name=newspath> <input type=hidden value="<?=$r[ztid]?>" name=oldztid>
  194. <input type=hidden value="<?=$filepass?>" name=filepass> <input type=hidden value="<?=$r[username]?>" name=username>
  195. <input name="oldfilename" type="hidden" value="<?=$r[filename]?>"> <input name="oldgroupid" type="hidden" value="<?=$r[groupid]?>">
  196. <input name="oldchecked" type="hidden" value="<?=$index_r[checked]?>">
  197. <input name="ecmsfrom" type="hidden" value="<?=RepPostStrUrl($_SERVER['HTTP_REFERER'])?>">
  198. <input name="ecmsnfrom" type="hidden" value="<?=RepPostStrUrl($_GET['ecmsnfrom'])?>">
  199. <input name="ecmscheck" type="hidden" id="ecmscheck" value="<?=$ecmscheck?>">
  200. </td>
  201. </tr>
  202. <tr bgcolor="#FFFFFF">
  203. <td width="16%" height="25">标题</td>
  204. <td><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DBEAF5">
  205. <tr>
  206. <td height="25" bgcolor="#FFFFFF">
  207. <?=$tts?"<select name='ttid'><option value='0'>标题分类</option>$tts</select>":""?>
  208. <input type=text name=title value="<?=ehtmlspecialchars(stripSlashes($r[title]))?>" size="60">
  209. </td>
  210. </tr>
  211. <tr>
  212. <td height="25" bgcolor="#FFFFFF">属性:
  213. <input name="titlefont[b]" type="checkbox" value="b"<?=$titlefontb?>>
  214. 粗体
  215. <input name="titlefont[i]" type="checkbox" value="i"<?=$titlefonti?>>
  216. 斜体
  217. <input name="titlefont[s]" type="checkbox" value="s"<?=$titlefonts?>>
  218. 删除线 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;颜色:
  219. <input name="titlecolor" type="text" value="<?=stripSlashes($r[titlecolor])?>" size="10" class="color">
  220. </td>
  221. </tr>
  222. </table></td>
  223. </tr>
  224. <tr bgcolor="#FFFFFF">
  225. <td height="25">特殊属性</td>
  226. <td><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DBEAF5">
  227. <tr>
  228. <td height="25" bgcolor="#FFFFFF">信息属性:
  229. <input name="checked" type="checkbox" value="1"<?=$index_r[checked]?' checked':''?>>
  230. 审核 &nbsp;&nbsp; 推荐
  231. <select name="isgood" id="isgood">
  232. <option value="0"<?=$r[isgood]==0?' selected':''?>>不推荐</option>
  233. <?=$ftnr['igname']?>
  234. </select>
  235. &nbsp;&nbsp; 头条
  236. <select name="firsttitle" id="firsttitle">
  237. <option value="0"<?=$r[firsttitle]==0?' selected':''?>>非头条</option>
  238. <?=$ftnr['ftname']?>
  239. </select> </td>
  240. </tr>
  241. <tr>
  242. <td height="25" bgcolor="#FFFFFF">外部链接:
  243. <input name="titleurl" type="text" value="<?=stripSlashes($r[titleurl])?>" size="49">
  244. </td>
  245. </tr>
  246. </table></td>
  247. </tr>
  248. <tr bgcolor="#FFFFFF">
  249. <td height="25">发布时间</td>
  250. <td><input name="newstime" type="text" value="<?=$r[newstime]?>" size="28" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd HH:mm:ss'})">
  251. <input type=button name=button2 value="设为当前时间" onclick="document.add.newstime.value='<?=$todaytime?>'"></td>
  252. </tr>
  253. <tr bgcolor="#FFFFFF">
  254. <td height="25">标题图片</td>
  255. <td><input name="titlepic" type="text" id="titlepic" value="<?=$ecmsfirstpost==1?"":ehtmlspecialchars(stripSlashes($r[titlepic]))?>" size="45">
  256. <a onclick="window.open('../ecmseditor/FileMain.php?type=1&classid=<?=$classid?>&infoid=<?=$id?>&filepass=<?=$filepass?>&doing=1&field=titlepic&sinfo=1<?=$ecms_hashur['ehref']?>','','width=700,height=550,scrollbars=yes');" title="选择已上传的图片"><img src="../../data/images/changeimg.gif" border="0" align="absbottom"></a>
  257. </td>
  258. </tr>
  259. <tr bgcolor="#FFFFFF">
  260. <td rowspan="2">其它选项</td>
  261. <td height="25">置顶级别:
  262. <select name="istop">
  263. <option value="0"<?=$r[istop]==0?' selected':''?>>不置顶</option>
  264. <option value="1"<?=$r[istop]==1?' selected':''?>>一级置顶</option>
  265. <option value="2"<?=$r[istop]==2?' selected':''?>>二级置顶</option>
  266. <option value="3"<?=$r[istop]==3?' selected':''?>>三级置顶</option>
  267. <option value="4"<?=$r[istop]==4?' selected':''?>>四级置顶</option>
  268. <option value="5"<?=$r[istop]==5?' selected':''?>>五级置顶</option>
  269. <option value="6"<?=$r[istop]==6?' selected':''?>>六级置顶</option>
  270. <option value="7"<?=$r[istop]==7?' selected':''?>>七级置顶</option>
  271. <option value="8"<?=$r[istop]==8?' selected':''?>>八级置顶</option>
  272. <option value="9"<?=$r[istop]==9?' selected':''?>>九级置顶</option>
  273. </select>
  274. ,
  275. <input type=checkbox name=closepl value=1<?=$r[closepl]==1?" checked":""?>>
  276. 关闭评论</td>
  277. </tr>
  278. <tr bgcolor="#FFFFFF">
  279. <td height="25">点击数&nbsp;&nbsp;&nbsp;:
  280. <input name="onclick" type="text" id="onclick2" value="<?=$r[onclick]?>" size="8">
  281. 下载数&nbsp;&nbsp;&nbsp;:
  282. <input name="totaldown" type="text" id="totaldown2" value="<?=$r[totaldown]?>" size="8"></td>
  283. </tr>
  284. <tr bgcolor="#FFFFFF">
  285. <td height="25">&nbsp;</td>
  286. <td><input type="submit" name="addnews" value=" 提 交 "> &nbsp;&nbsp;&nbsp;
  287. <input type="reset" name="Submit2" value="重置">
  288. &nbsp;&nbsp;&nbsp; <input type="button" name="Submit22" value="取消" onclick="window.close();"></td>
  289. </tr>
  290. </form>
  291. </table>
  292. </body>
  293. </html>
  294. <?php
  295. db_close();
  296. $empire=null;
  297. ?>