chtmlfun.php 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846
  1. <?php
  2. //生成所有内容页面
  3. function ReNewsHtml($start,$classid,$from,$retype,$startday,$endday,$startid,$endid,$tbname,$havehtml){
  4. global $empire,$public_r,$class_r,$fun_r,$dbtbpre,$etable_r,$moreportpid;
  5. $moreportpid=(int)$moreportpid;
  6. $mphref='';
  7. if($moreportpid)
  8. {
  9. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  10. }
  11. $tbname=RepPostVar($tbname);
  12. if(empty($tbname)||!eCheckTbname($tbname))
  13. {
  14. printerror("ErrorUrl","history.go(-1)");
  15. }
  16. $start=(int)$start;
  17. //按ID
  18. if($retype)
  19. {
  20. $startid=(int)$startid;
  21. $endid=(int)$endid;
  22. $add1=$endid?' and id>='.$startid.' and id<='.$endid:'';
  23. }
  24. else
  25. {
  26. $startday=RepPostVar($startday);
  27. $endday=RepPostVar($endday);
  28. $add1=$startday&&$endday?' and truetime>='.to_time($startday.' 00:00:00').' and truetime<='.to_time($endday.' 23:59:59'):'';
  29. }
  30. //按栏目
  31. $classid=(int)$classid;
  32. if($classid)
  33. {
  34. $where=empty($class_r[$classid][islast])?ReturnClass($class_r[$classid][sonclass]):"classid='$classid'";
  35. $add1.=' and '.$where;
  36. }
  37. //不生成
  38. $add1.=ReturnNreInfoWhere();
  39. //是否重复生成
  40. $updatehavehtml='havehtml=0';
  41. if($havehtml!=1)
  42. {
  43. $add1.=' and havehtml=0';
  44. $updatehavehtml='';
  45. }
  46. //优化
  47. $yhadd='';
  48. $yhid=$etable_r[$tbname][yhid];
  49. $yhvar='rehtml';
  50. if($yhid)
  51. {
  52. $yhadd=ReturnYhSql($yhid,$yhvar,1);
  53. }
  54. $b=0;
  55. $sql=$empire->query("select id,classid from {$dbtbpre}ecms_".$tbname."_index where ".$yhadd."id>$start".$add1." and checked=1 order by id limit ".$public_r[renewsnum]);
  56. while($r=$empire->fetch($sql))
  57. {
  58. $b=1;
  59. $new_start=$r[id];
  60. if($class_r[$r[classid]][showdt]==2)
  61. {
  62. continue;
  63. }
  64. GetHtml($r['classid'],$r['id'],'',0,1);//生成信息文件
  65. }
  66. if(empty($b))
  67. {
  68. //更新状态
  69. if($yhadd.$add1=='')
  70. {
  71. $empire->query("update {$dbtbpre}ecms_".$tbname."_index set havehtml=1 where havehtml=0 and checked=1");
  72. $empire->query("update {$dbtbpre}ecms_".$tbname." set havehtml=1 where havehtml=0");
  73. }
  74. else
  75. {
  76. if($updatehavehtml)
  77. {
  78. $updatehavehtml=' and '.$updatehavehtml;
  79. }
  80. if($yhadd&&$add1)
  81. {
  82. $truewhereindex=$yhadd.substr($add1,5).' and checked=1';
  83. $truewhere=$yhadd.substr($add1,5);
  84. }
  85. elseif($yhadd&&!$add1)
  86. {
  87. $truewhereindex=$yhadd.'checked=1';
  88. $truewhere=substr($yhadd,0,-5);
  89. }
  90. else
  91. {
  92. $truewhereindex=substr($add1,5).' and checked=1';
  93. $truewhere=substr($add1,5);
  94. }
  95. $empire->query("update {$dbtbpre}ecms_".$tbname."_index set havehtml=1 where ".$truewhereindex.$updatehavehtml);
  96. $empire->query("update {$dbtbpre}ecms_".$tbname." set havehtml=1 where ".$truewhere.$updatehavehtml);
  97. }
  98. echo "<link rel=\"stylesheet\" href=\"../data/images/css.css\" type=\"text/css\"><center><b>".$tbname.$fun_r[ReTableIsOK]."!</b></center>";
  99. db_close();
  100. $empire=null;
  101. exit();
  102. }
  103. echo"<link rel=\"stylesheet\" href=\"../data/images/css.css\" type=\"text/css\"><meta http-equiv=\"refresh\" content=\"".$public_r['realltime'].";url=ecmschtml.php?enews=ReNewsHtml&tbname=$tbname&classid=$classid&start=$new_start&from=".urlencode($from)."&retype=$retype&startday=$startday&endday=$endday&startid=$startid&endid=$endid&havehtml=$havehtml&reallinfotime=".ehtmlspecialchars($_GET['reallinfotime']).hReturnEcmsHashStrHref(0).$mphref."\">".$fun_r[OneReNewsHtmlSuccess]."(ID:<font color=red><b>".$new_start."</b></font>)";
  104. exit();
  105. }
  106. //刷新所有列表
  107. function ReListHtml_all($start,$do,$from){
  108. global $empire,$public_r,$fun_r,$class_r,$dbtbpre,$moreportpid;
  109. $moreportpid=(int)$moreportpid;
  110. $mphref='';
  111. if($moreportpid)
  112. {
  113. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  114. }
  115. $start=(int)$start;
  116. $b=0;
  117. if($do=="all")
  118. {
  119. insert_dolog("");//操作日志
  120. printerror("ReClassidAllSuccess",$from);
  121. }
  122. //栏目
  123. $sql=$empire->query("select classid,classtempid,islast,islist from {$dbtbpre}enewsclass where classid>$start and nreclass=0 order by classid limit ".$public_r[relistnum]);
  124. while($r=$empire->fetch($sql))
  125. {
  126. $b=1;
  127. if(!$r[islast])//大栏目
  128. {
  129. if($r[islist]==1)
  130. {
  131. ListHtml($r[classid],$ret_r,3);
  132. }
  133. elseif($r[islist]==3)//栏目绑定信息
  134. {
  135. ReClassBdInfo($r[classid]);
  136. }
  137. else
  138. {
  139. $classtemp=$r[islist]==2?GetClassText($r[classid]):GetClassTemp($r['classtempid']);
  140. NewsBq($r[classid],$classtemp,0,0);
  141. }
  142. }
  143. else//子栏目
  144. {
  145. ListHtml($r[classid],$ret_r,0);
  146. }
  147. $end_classid=$r[classid];
  148. }
  149. if(empty($b))
  150. {
  151. echo $fun_r[ReListNewsSuccess]."<script>self.location.href='ecmschtml.php?enews=ReListHtml_all&start=0&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."&do=all';</script>";
  152. exit();
  153. }
  154. //echo $fun_r[OneReListNewsSuccess]."(ID:<font color=red><b>".$end_classid."</b></font>)<script>self.location.href='ecmschtml.php?enews=ReListHtml_all&start=$end_classid&do=class&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  155. echo"<meta http-equiv=\"refresh\" content=\"".$public_r['realltime'].";url=ecmschtml.php?enews=ReListHtml_all&start=$end_classid&do=class&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."\">".$fun_r[OneReListNewsSuccess]."(ID:<font color=red><b>".$end_classid."</b></font>)";
  156. exit();
  157. }
  158. //刷新专题列表
  159. function ReZtListHtml_all($start,$do,$from){
  160. global $empire,$public_r,$fun_r,$class_r,$dbtbpre,$moreportpid;
  161. $moreportpid=(int)$moreportpid;
  162. $mphref='';
  163. if($moreportpid)
  164. {
  165. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  166. }
  167. $start=(int)$start;
  168. $b=0;
  169. $time=time();
  170. if($do=="all")
  171. {
  172. insert_dolog("");//操作日志
  173. printerror("ReZtidAllSuccess",$from);
  174. }
  175. elseif($do=="ztc")//刷新专题子类
  176. {
  177. $zcsql=$empire->query("select cid from {$dbtbpre}enewszttype where cid>$start and (endtime=0 or endtime>$time) order by cid limit ".$public_r['relistnum']);
  178. while($c_r=$empire->fetch($zcsql))
  179. {
  180. $b=1;
  181. ListHtmlIndex($c_r['cid'],$ret_r,1);
  182. $end_classid=$c_r['cid'];
  183. }
  184. if(empty($b))
  185. {
  186. echo $fun_r[ReZtcListNewsSuccess]."<script>self.location.href='ecmschtml.php?enews=ReZtListHtml_all&start=0&do=all&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  187. exit();
  188. }
  189. echo"<meta http-equiv=\"refresh\" content=\"".$public_r['realltime'].";url=ecmschtml.php?enews=ReZtListHtml_all&start=$end_classid&do=ztc&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."\">".$fun_r[OneReZtcListNewsSuccess]."(ZtID:<font color=red><b>".$end_classid."</b></font>)";
  190. exit();
  191. }
  192. $zsql=$empire->query("select ztid from {$dbtbpre}enewszt where ztid>$start and (endtime=0 or endtime>$time) order by ztid limit ".$public_r['relistnum']);
  193. while($z_r=$empire->fetch($zsql))
  194. {
  195. $b=1;
  196. ListHtmlIndex($z_r['ztid'],$ret_r,0);
  197. $end_classid=$z_r['ztid'];
  198. }
  199. if(empty($b))
  200. {
  201. echo $fun_r[ReZtListNewsSuccess]."<script>self.location.href='ecmschtml.php?enews=ReZtListHtml_all&start=0&do=ztc&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  202. exit();
  203. }
  204. echo"<meta http-equiv=\"refresh\" content=\"".$public_r['realltime'].";url=ecmschtml.php?enews=ReZtListHtml_all&start=$end_classid&do=zt&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."\">".$fun_r[OneReZtListNewsSuccess]."(ZtID:<font color=red><b>".$end_classid."</b></font>)";
  205. exit();
  206. }
  207. //刷新单个专题
  208. function DoReZtListHtml($ztid,$ecms=0){
  209. global $empire,$dbtbpre,$public_r;
  210. ListHtmlIndex($ztid,$ret_r,0);
  211. //刷新专题子类
  212. if($ecms==1)
  213. {
  214. $csql=$empire->query("select cid from {$dbtbpre}enewszttype where ztid='$ztid'");
  215. while($cr=$empire->fetch($csql))
  216. {
  217. ListHtmlIndex($cr['cid'],$ret_r,1);
  218. }
  219. }
  220. }
  221. //刷新标题分类
  222. function ReTtListHtml_all($start,$do,$from){
  223. global $empire,$public_r,$fun_r,$class_r,$dbtbpre,$moreportpid;
  224. $moreportpid=(int)$moreportpid;
  225. $mphref='';
  226. if($moreportpid)
  227. {
  228. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  229. }
  230. $start=(int)$start;
  231. $b=0;
  232. $tsql=$empire->query("select typeid from {$dbtbpre}enewsinfotype where typeid>$start and listdt=0 order by typeid limit ".$public_r['relistnum']);
  233. while($t_r=$empire->fetch($tsql))
  234. {
  235. $b=1;
  236. ListHtml($t_r['typeid'],$ret_r,5);
  237. $end_classid=$t_r['typeid'];
  238. }
  239. if(empty($b))
  240. {
  241. insert_dolog("");//操作日志
  242. printerror("ReTtidAllSuccess",$from);
  243. }
  244. echo"<meta http-equiv=\"refresh\" content=\"".$public_r['realltime'].";url=ecmschtml.php?enews=ReTtListHtml_all&start=$end_classid&do=tt&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."\">".$fun_r[OneReTtListNewsSuccess]."(ZtID:<font color=red><b>".$end_classid."</b></font>)";
  245. exit();
  246. }
  247. //刷新所有js
  248. function ReAllNewsJs($start,$do,$from){
  249. global $empire,$public_r,$fun_r,$dbtbpre,$moreportpid;
  250. $moreportpid=(int)$moreportpid;
  251. $mphref='';
  252. if($moreportpid)
  253. {
  254. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  255. }
  256. $start=(int)$start;
  257. $line=$public_r[relistnum];
  258. $b=0;
  259. if($do=="all")
  260. {
  261. $pr=$empire->fetch1("select hotnum,newnum,goodnum,hotplnum,firstnum,jstempid from {$dbtbpre}enewspublic limit 1");
  262. $jstemptext=GetTheJstemp($pr['jstempid']);//js模板
  263. //刷新全部js
  264. GetNewsJs($classid,$pr[newnum],$pr[sub_new],$pr[newshowdate],3,$jstemptext);
  265. GetNewsJs($classid,$pr[hotnum],$pr[sub_hot],$pr[hotshowdate],4,$jstemptext);
  266. GetNewsJs($classid,$pr[goodnum],$pr[sub_good],$pr[goodshowdate],5,$jstemptext);
  267. GetNewsJs($classid,$pr[hotplnum],$pr[sub_hotpl],$pr[hotplshowdate],10,$jstemptext);
  268. GetNewsJs($classid,$pr[firstnum],$pr[sub_first],$pr[firstshowdate],13,$jstemptext);
  269. insert_dolog("");//操作日志
  270. printerror("ReAllJsSuccess",$from);
  271. }
  272. elseif($do=="tt")//刷新标题分类js
  273. {
  274. //$from=urlencode($from);
  275. $sql=$empire->query("select typeid,newline,hotline,goodline,hotplline,firstline,jstempid from {$dbtbpre}enewsinfotype where typeid>$start and nrejs=0 order by typeid limit $line");
  276. while($r=$empire->fetch($sql))
  277. {
  278. $jstemptext=GetTheJstemp($r[jstempid]);//js模板
  279. $b=1;
  280. GetNewsJs($r[typeid],$r[newline],$r[newstrlen],$r[newshowdate],25,$jstemptext);
  281. GetNewsJs($r[typeid],$r[hotline],$r[hotstrlen],$r[hotshowdate],26,$jstemptext);
  282. GetNewsJs($r[typeid],$r[goodline],$r[goodstrlen],$r[goodshowdate],27,$jstemptext);
  283. GetNewsJs($r[typeid],$r[hotplline],$r[hotplstrlen],$r[hotplshowdate],28,$jstemptext);
  284. GetNewsJs($r[typeid],$r[firstline],$r[firststrlen],$r[firstshowdate],29,$jstemptext);
  285. $newstart=$r[typeid];
  286. }
  287. //刷新完毕
  288. if(empty($b))
  289. {
  290. echo $fun_r[ReTtNewsJsSuccess]."<script>self.location.href='ecmschtml.php?enews=ReAllNewsJs&do=all&start=0&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  291. exit();
  292. }
  293. //echo $fun_r[OneReTtNewsJsSuccess]."(ZtID:<font color=red><b>".$newstart."</b></font>)<script>self.location.href='ecmschtml.php?enews=ReAllNewsJs&do=tt&start=$newstart&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  294. echo"<meta http-equiv=\"refresh\" content=\"".$public_r['realltime'].";url=ecmschtml.php?enews=ReAllNewsJs&do=tt&start=$newstart&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."\">".$fun_r[OneReTtNewsJsSuccess]."(ZtID:<font color=red><b>".$newstart."</b></font>)";
  295. exit();
  296. }
  297. else//刷新栏目js
  298. {
  299. //$from=urlencode($from);
  300. $sql=$empire->query("select classid,newline,hotline,goodline,hotplline,firstline,jstempid from {$dbtbpre}enewsclass where classid>$start and nrejs=0 and wburl='' order by classid limit $line");
  301. while($r=$empire->fetch($sql))
  302. {
  303. $jstemptext=GetTheJstemp($r[jstempid]);//js模板
  304. $b=1;
  305. GetNewsJs($r[classid],$r[newline],$r[newstrlen],$r[newshowdate],0,$jstemptext);
  306. GetNewsJs($r[classid],$r[hotline],$r[hotstrlen],$r[hotshowdate],1,$jstemptext);
  307. GetNewsJs($r[classid],$r[goodline],$r[goodstrlen],$r[goodshowdate],2,$jstemptext);
  308. GetNewsJs($r[classid],$r[hotplline],$r[hotplstrlen],$r[hotplshowdate],9,$jstemptext);
  309. GetNewsJs($r[classid],$r[firstline],$r[firststrlen],$r[firstshowdate],12,$jstemptext);
  310. $newstart=$r[classid];
  311. }
  312. //刷新完毕
  313. if(empty($b))
  314. {
  315. echo $fun_r[ReClassNewsJsSuccess]."<script>self.location.href='ecmschtml.php?enews=ReAllNewsJs&do=tt&start=0&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  316. exit();
  317. }
  318. //echo $fun_r[OneReClassNewsJsSuccess]."(ID:<font color=red><b>".$newstart."</b></font>)<script>self.location.href='ecmschtml.php?enews=ReAllNewsJs&do=class&start=$newstart&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  319. echo"<meta http-equiv=\"refresh\" content=\"".$public_r['realltime'].";url=ecmschtml.php?enews=ReAllNewsJs&do=class&start=$newstart&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."\">".$fun_r[OneReClassNewsJsSuccess]."(ID:<font color=red><b>".$newstart."</b></font>)";
  320. exit();
  321. }
  322. }
  323. //刷新最新文章与热门文章
  324. function ReHot_NewNews(){
  325. global $empire,$dbtbpre;
  326. $public_r=$empire->fetch1("select hotnum,newnum,goodnum,hotplnum,firstnum,jstempid from {$dbtbpre}enewspublic limit 1");
  327. $jstemptext=GetTheJstemp($public_r['jstempid']);//取得js模板
  328. GetNewsJs($classid,$public_r[newnum],$public_r[sub_new],$public_r[newshowdate],3,$jstemptext);
  329. GetNewsJs($classid,$public_r[hotnum],$public_r[sub_hot],$public_r[hotshowdate],4,$jstemptext);
  330. GetNewsJs($classid,$public_r[goodnum],$public_r[sub_good],$public_r[goodshowdate],5,$jstemptext);
  331. GetNewsJs($classid,$public_r[hotplnum],$public_r[sub_hotpl],$public_r[hotplshowdate],10,$jstemptext);
  332. GetNewsJs($classid,$public_r[firstnum],$public_r[sub_first],$public_r[firstshowdate],13,$jstemptext);
  333. insert_dolog("");//操作日志
  334. printerror("ReNewHotSuccess","history.go(-1)");
  335. }
  336. //刷新专题
  337. function ReZtHtml($ztid,$ecms=0){
  338. global $class_zr;
  339. $ztid=(int)$ztid;
  340. if(!$ztid)
  341. {
  342. printerror("NotChangeReZtid","history.go(-1)");
  343. }
  344. DoReZtListHtml($ztid,$ecms);
  345. insert_dolog("ztid=$ztid");//操作日志
  346. printerror("ReZtidSuccess","history.go(-1)");
  347. }
  348. //刷新标题分类
  349. function ReTtHtml($typeid){
  350. global $class_tr;
  351. $typeid=(int)$typeid;
  352. if(!$typeid)
  353. {
  354. printerror("NotChangeReTtid","history.go(-1)");
  355. }
  356. ListHtml($typeid,$ret_r,5);
  357. insert_dolog("typeid=$typeid");//操作日志
  358. printerror("ReTtidSuccess","history.go(-1)");
  359. }
  360. //刷新单个栏目
  361. function ReSingleJs($classid,$doing=0){
  362. global $empire,$dbtbpre;
  363. $classid=(int)$classid;
  364. //刷新栏目
  365. if($doing==0)
  366. {
  367. $r=$empire->fetch1("select classid,newline,hotline,goodline,hotplline,firstline,jstempid from {$dbtbpre}enewsclass where classid='$classid'");
  368. $jstemptext=GetTheJstemp($r[jstempid]);//js模板
  369. GetNewsJs($r[classid],$r[newline],$r[newstrlen],$r[newshowdate],0,$jstemptext);
  370. GetNewsJs($r[classid],$r[hotline],$r[hotstrlen],$r[hotshowdate],1,$jstemptext);
  371. GetNewsJs($r[classid],$r[goodline],$r[goodstrlen],$r[goodshowdate],2,$jstemptext);
  372. GetNewsJs($r[classid],$r[hotplline],$r[hotplstrlen],$r[hotplshowdate],9,$jstemptext);
  373. GetNewsJs($r[classid],$r[firstline],$r[firststrlen],$r[firstshowdate],12,$jstemptext);
  374. }
  375. elseif($doing==1)//刷新标题分类js
  376. {
  377. $r=$empire->fetch1("select typeid,newline,hotline,goodline,hotplline,firstline,jstempid from {$dbtbpre}enewsinfotype where typeid='$classid'");
  378. $jstemptext=GetTheJstemp($r[jstempid]);//js模板
  379. GetNewsJs($r[typeid],$r[newline],$r[newstrlen],$r[newshowdate],25,$jstemptext);
  380. GetNewsJs($r[typeid],$r[hotline],$r[hotstrlen],$r[hotshowdate],26,$jstemptext);
  381. GetNewsJs($r[typeid],$r[goodline],$r[goodstrlen],$r[goodshowdate],27,$jstemptext);
  382. GetNewsJs($r[typeid],$r[hotplline],$r[hotplstrlen],$r[hotplshowdate],28,$jstemptext);
  383. GetNewsJs($r[typeid],$r[firstline],$r[firststrlen],$r[firstshowdate],29,$jstemptext);
  384. }
  385. else
  386. {}
  387. insert_dolog("");//操作日志
  388. printerror("ReJsSuccess","history.go(-1)");
  389. }
  390. //批量生成动态页面
  391. function ReDtPage($userid,$username){
  392. //操作权限
  393. CheckLevel($userid,$username,$classid,"changedata");
  394. GetPlTempPage();//评论列表模板
  395. GetPlJsPage();//评论JS模板
  396. ReCptemp();//控制面板模板
  397. GetSearch();//三搜索表单模板
  398. GetPrintPage();//打印模板
  399. GetDownloadPage();//下载地址页面
  400. ReGbooktemp();//留言板模板
  401. ReLoginIframe();//登陆状态模板
  402. ReSchAlltemp();//全站搜索模板
  403. //操作日志
  404. insert_dolog("");
  405. printerror("ReDtPageSuccess","history.go(-1)");
  406. }
  407. //批量刷新自定义页面
  408. function ReUserpageAll($start=0,$from,$userid,$username){
  409. global $empire,$public_r,$fun_r,$dbtbpre,$moreportpid;
  410. $moreportpid=(int)$moreportpid;
  411. $mphref='';
  412. if($moreportpid)
  413. {
  414. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  415. }
  416. $start=(int)$start;
  417. $b=0;
  418. $sql=$empire->query("select id,path,pagetext,title,pagetitle,pagekeywords,pagedescription,tempid from {$dbtbpre}enewspage where id>$start order by id limit ".$public_r['reuserpagenum']);
  419. while($r=$empire->fetch($sql))
  420. {
  421. $b=1;
  422. $newstart=$r[id];
  423. ReUserpage($r[id],$r[pagetext],$r[path],$r[title],$r[pagetitle],$r[pagekeywords],$r[pagedescription],$r[tempid]);
  424. }
  425. //完毕
  426. if(empty($b))
  427. {
  428. //操作日志
  429. insert_dolog("");
  430. printerror("ReUserpageAllSuccess",$from);
  431. }
  432. echo $fun_r['OneReUserpageSuccess']."(ID:<font color=red><b>".$newstart."</b></font>)<script>self.location.href='ecmschtml.php?enews=ReUserpageAll&start=$newstart&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  433. exit();
  434. }
  435. //批量刷新自定义信息列表
  436. function ReUserlistAll($start=0,$from,$userid,$username){
  437. global $empire,$public_r,$fun_r,$dbtbpre,$moreportpid;
  438. $moreportpid=(int)$moreportpid;
  439. $mphref='';
  440. if($moreportpid)
  441. {
  442. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  443. }
  444. $start=(int)$start;
  445. $b=0;
  446. $sql=$empire->query("select listid,pagetitle,filepath,filetype,totalsql,listsql,maxnum,lencord,listtempid,pagekeywords,pagedescription from {$dbtbpre}enewsuserlist where listid>$start order by listid limit ".$public_r['reuserlistnum']);
  447. while($r=$empire->fetch($sql))
  448. {
  449. $b=1;
  450. $newstart=$r[listid];
  451. ReUserlist($r,"");
  452. }
  453. //完毕
  454. if(empty($b))
  455. {
  456. //操作日志
  457. insert_dolog("");
  458. printerror("ReUserlistAllSuccess",$from);
  459. }
  460. echo $fun_r['OneReUserlistSuccess']."(ID:<font color=red><b>".$newstart."</b></font>)<script>self.location.href='ecmschtml.php?enews=ReUserlistAll&start=$newstart&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  461. exit();
  462. }
  463. //批量刷新自定义JS
  464. function ReUserjsAll($start=0,$from,$userid,$username){
  465. global $empire,$public_r,$fun_r,$dbtbpre,$moreportpid;
  466. $moreportpid=(int)$moreportpid;
  467. $mphref='';
  468. if($moreportpid)
  469. {
  470. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  471. }
  472. $start=(int)$start;
  473. $b=0;
  474. $sql=$empire->query("select jsid,jsname,jssql,jstempid,jsfilename from {$dbtbpre}enewsuserjs where jsid>$start order by jsid limit ".$public_r['reuserjsnum']);
  475. while($r=$empire->fetch($sql))
  476. {
  477. $b=1;
  478. $newstart=$r[jsid];
  479. ReUserjs($r,"");
  480. }
  481. //完毕
  482. if(empty($b))
  483. {
  484. //操作日志
  485. insert_dolog("");
  486. printerror("ReUserjsAllSuccess",$from);
  487. }
  488. echo $fun_r['OneReUserjsSuccess']."(ID:<font color=red><b>".$newstart."</b></font>)<script>self.location.href='ecmschtml.php?enews=ReUserjsAll&start=$newstart&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  489. exit();
  490. }
  491. //批量刷新碎片文件
  492. function ReSpAll($start=0,$from,$userid,$username){
  493. global $empire,$public_r,$fun_r,$dbtbpre,$moreportpid;
  494. $moreportpid=(int)$moreportpid;
  495. $mphref='';
  496. if($moreportpid)
  497. {
  498. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  499. }
  500. $start=(int)$start;
  501. $b=0;
  502. $sql=$empire->query("select spid,varname,refile,spfile,spfileline,spfilesub from {$dbtbpre}enewssp where refile=1 and spid>$start order by spid limit ".$public_r['reuserpagenum']);
  503. while($r=$empire->fetch($sql))
  504. {
  505. $b=1;
  506. $newstart=$r['spid'];
  507. DoSpReFile($r,0);
  508. }
  509. //完毕
  510. if(empty($b))
  511. {
  512. //操作日志
  513. insert_dolog("");
  514. printerror("ReSpAllSuccess",$from);
  515. }
  516. echo $fun_r['OneReSpSuccess']."(ID:<font color=red><b>".$newstart."</b></font>)<script>self.location.href='ecmschtml.php?enews=ReSpAll&start=$newstart&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  517. exit();
  518. }
  519. //生成单碎片文件
  520. function ReSp($add,$userid,$username,$ecms=0){
  521. global $empire,$dbtbpre;
  522. //操作权限
  523. if($ecms==0)
  524. {
  525. CheckLevel($userid,$username,$classid,"sp");
  526. }
  527. $spid=$add['spid'];
  528. $count=count($spid);
  529. if(!$count)
  530. {
  531. printerror("EmptyReSpid","history.go(-1)");
  532. }
  533. for($i=0;$i<$count;$i++)
  534. {
  535. $spid[$i]=(int)$spid[$i];
  536. if(empty($spid[$i]))
  537. {
  538. continue;
  539. }
  540. DoSpReFile($r,$spid[$i]);
  541. }
  542. //操作日志
  543. insert_dolog("");
  544. printerror("ReSpSuccess",EcmsGetReturnUrl());
  545. }
  546. //转向处理文件
  547. function GoReListHtmlMore($classid,$gore,$from,$ecms=0){
  548. global $empire,$class_r,$moreportpid;
  549. $moreportpid=(int)$moreportpid;
  550. $mphref='';
  551. if($moreportpid)
  552. {
  553. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  554. }
  555. $count=count($classid);
  556. if($count==0)
  557. {
  558. printerror("EmptyReListHtmlMoreId","history.go(-1)");
  559. }
  560. $cid="";
  561. for($i=0;$i<$count;$i++)
  562. {
  563. if($i==0)
  564. {
  565. $fh="";
  566. }
  567. else
  568. {
  569. $fh=",";
  570. }
  571. $cid.=$fh.$classid[$i];
  572. }
  573. //栏目
  574. if(empty($gore))
  575. {
  576. $phome="ReListHtmlMore";
  577. }
  578. elseif($gore==2)//标题分类
  579. {
  580. $phome="ReListTtHtmlMore";
  581. }
  582. else//专题
  583. {
  584. $phome="ReListZtHtmlMore";
  585. }
  586. echo"<script>self.location.href='ecmschtml.php?enews=$phome&classid=$cid&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."&ecms=$ecms';</script>";
  587. exit();
  588. }
  589. //刷新多列表
  590. function ReListHtmlMore($start,$classid,$from){
  591. global $empire,$public_r,$fun_r,$class_r,$dbtbpre,$moreportpid;
  592. $moreportpid=(int)$moreportpid;
  593. $mphref='';
  594. if($moreportpid)
  595. {
  596. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  597. }
  598. $start=(int)$start;
  599. $classid=eReturnInids($classid);
  600. if(empty($classid))
  601. {
  602. printerror("ErrorUrl",$from);
  603. }
  604. $b=0;
  605. $sql=$empire->query("select classid,classtempid,islast,islist from {$dbtbpre}enewsclass where classid>$start and classid in(".$classid.") order by classid limit ".$public_r[relistnum]);
  606. while($r=$empire->fetch($sql))
  607. {
  608. $b=1;
  609. //大栏目
  610. if(!$r[islast])
  611. {
  612. if($r[islist]==1)
  613. {
  614. ListHtml($r[classid],$ret_r,3);
  615. }
  616. elseif($r[islist]==3)//栏目绑定信息
  617. {
  618. ReClassBdInfo($r[classid]);
  619. }
  620. else
  621. {
  622. $classtemp=$r[islist]==2?GetClassText($r[classid]):GetClassTemp($r['classtempid']);
  623. NewsBq($r[classid],$classtemp,0,0);
  624. }
  625. }
  626. //子栏目
  627. else
  628. {
  629. ListHtml($r[classid],$ret_r,0);
  630. }
  631. $end_classid=$r[classid];
  632. }
  633. if(empty($b))
  634. {
  635. //操作日志
  636. insert_dolog("");
  637. printerror("ReClassidAllSuccess",$from);
  638. }
  639. echo $fun_r[OneReListNewsSuccess]."(ID:<font color=red><b>".$end_classid."</b></font>)<script>self.location.href='ecmschtml.php?enews=ReListHtmlMore&start=$end_classid&classid=$classid&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  640. exit();
  641. }
  642. //刷新多专题列表
  643. function ReListZtHtmlMore($start,$classid,$from,$ecms=0){
  644. global $empire,$public_r,$fun_r,$class_r,$dbtbpre,$moreportpid;
  645. $moreportpid=(int)$moreportpid;
  646. $mphref='';
  647. if($moreportpid)
  648. {
  649. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  650. }
  651. $start=(int)$start;
  652. $classid=eReturnInids($classid);
  653. if(empty($classid))
  654. {
  655. printerror("ErrorUrl",$from);
  656. }
  657. $b=0;
  658. //刷新专题
  659. $zsql=$empire->query("select ztid from {$dbtbpre}enewszt where ztid>$start and ztid in (".$classid.") order by ztid limit ".$public_r[relistnum]);
  660. while($z_r=$empire->fetch($zsql))
  661. {
  662. $b=1;
  663. DoReZtListHtml($z_r[ztid],$ecms);
  664. $end_classid=$z_r[ztid];
  665. }
  666. if(empty($b))
  667. {
  668. //操作日志
  669. insert_dolog("");
  670. printerror("ReZtidAllSuccess",$from);
  671. }
  672. echo $fun_r[OneReZtListNewsSuccess]."(ZtID:<font color=red><b>".$end_classid."</b></font>)<script>self.location.href='ecmschtml.php?enews=ReListZtHtmlMore&start=$end_classid&classid=$classid&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."&ecms=$ecms';</script>";
  673. exit();
  674. }
  675. //刷新多标题分类
  676. function ReListTtHtmlMore($start,$classid,$from){
  677. global $empire,$public_r,$fun_r,$class_r,$dbtbpre,$moreportpid;
  678. $moreportpid=(int)$moreportpid;
  679. $mphref='';
  680. if($moreportpid)
  681. {
  682. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  683. }
  684. $start=(int)$start;
  685. $classid=eReturnInids($classid);
  686. if(empty($classid))
  687. {
  688. printerror("ErrorUrl",$from);
  689. }
  690. $b=0;
  691. //刷新标题分类
  692. $tsql=$empire->query("select typeid from {$dbtbpre}enewsinfotype where typeid>$start and typeid in (".$classid.") order by typeid limit ".$public_r[relistnum]);
  693. while($t_r=$empire->fetch($tsql))
  694. {
  695. $b=1;
  696. ListHtml($t_r[typeid],$ret_r,5);
  697. $end_classid=$t_r[typeid];
  698. }
  699. if(empty($b))
  700. {
  701. //操作日志
  702. insert_dolog("");
  703. printerror("ReTtidAllSuccess",$from);
  704. }
  705. echo $fun_r[OneReTtListNewsSuccess]."(ZtID:<font color=red><b>".$end_classid."</b></font>)<script>self.location.href='ecmschtml.php?enews=ReListTtHtmlMore&start=$end_classid&classid=$classid&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  706. exit();
  707. }
  708. //生成单信息
  709. function ReSingleInfo($userid,$username){
  710. global $empire,$public_r,$class_r,$dbtbpre;
  711. if($_GET['classid'])
  712. {
  713. $classid=(int)$_GET['classid'];
  714. $id=$_GET['id'];
  715. }
  716. else
  717. {
  718. $classid=(int)$_POST['classid'];
  719. $id=$_POST['id'];
  720. }
  721. if(empty($classid))
  722. {
  723. printerror('ErrorUrl','history.go(-1)');
  724. }
  725. $count=count($id);
  726. if(empty($count))
  727. {
  728. printerror("NotReInfoid","history.go(-1)");
  729. }
  730. for($i=0;$i<$count;$i++)
  731. {
  732. $id[$i]=intval($id[$i]);
  733. $add.="id='$id[$i]' or ";
  734. }
  735. $add=substr($add,0,strlen($add)-4);
  736. $sql=$empire->query("select * from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$add);
  737. while($r=$empire->fetch($sql))
  738. {
  739. GetHtml($r['classid'],$r['id'],$r,1);//生成信息文件
  740. }
  741. //操作日志
  742. insert_dolog("classid=".$classid);
  743. printerror("ReSingleInfoSuccess",EcmsGetReturnUrl());
  744. }
  745. //恢复栏目目录
  746. function ReClassPath($start=0){
  747. global $empire,$public_r,$dbtbpre,$moreportpid;
  748. $moreportpid=(int)$moreportpid;
  749. $mphref='';
  750. if($moreportpid)
  751. {
  752. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  753. }
  754. $start=(int)$start;
  755. $sql=$empire->query("select classid,classpath,islast from {$dbtbpre}enewsclass where wburl='' and classid>$start order by classid limit ".$public_r[relistnum]);
  756. $b=0;
  757. while($r=$empire->fetch($sql))
  758. {
  759. $b=1;
  760. $newstart=$r[classid];
  761. $returnpath=FormatClassPath($r[classpath],$r[islast]);
  762. echo "Create Path:".$returnpath." success!<br>";
  763. }
  764. //恢复专题目录
  765. if(empty($b))
  766. {
  767. $zsql=$empire->query("select ztid,ztpath from {$dbtbpre}enewszt order by ztid");
  768. while($zr=$empire->fetch($zsql))
  769. {
  770. CreateZtPath($zr[ztpath]);
  771. }
  772. //恢复标题分类目录
  773. $tsql=$empire->query("select typeid,tpath from {$dbtbpre}enewsinfotype order by typeid");
  774. while($tr=$empire->fetch($tsql))
  775. {
  776. CreateInfoTypePath($tr['tpath']);
  777. }
  778. }
  779. if(empty($b))
  780. {
  781. //操作日志
  782. insert_dolog("");
  783. printerror("ReClassPathSuccess","ReHtml/ChangeData.php?".hReturnEcmsHashStrHref2(0).$mphref);
  784. }
  785. echo"(ID:<font color=red><b>".$newstart."</b></font>)<script>self.location.href='ecmschtml.php?enews=ReClassPath&start=$newstart".hReturnEcmsHashStrHref(0).$mphref."';</script>";
  786. exit();
  787. }
  788. //刷新首页
  789. function ReIndex(){
  790. $indextemp=GetIndextemp();//取得模板
  791. NewsBq($classid,$indextemp,1,0);
  792. insert_dolog("");//操作日志
  793. printerror("ReIndexSuccess","history.go(-1)");
  794. }
  795. //更新栏目信息数
  796. function UpdateClassInfosAll($add){
  797. global $empire,$public_r,$fun_r,$class_r,$dbtbpre,$moreportpid;
  798. $moreportpid=(int)$moreportpid;
  799. $mphref='';
  800. if($moreportpid)
  801. {
  802. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  803. }
  804. $start=(int)$add['start'];
  805. $from=$add['from'];
  806. $b=0;
  807. //栏目
  808. $sql=$empire->query("select classid from {$dbtbpre}enewsclass where classid>$start and islast=1 order by classid limit ".$public_r[relistnum]);
  809. while($r=$empire->fetch($sql))
  810. {
  811. $b=1;
  812. $end_classid=$r['classid'];
  813. ResetClassInfos($r['classid']);
  814. }
  815. if(empty($b))
  816. {
  817. insert_dolog('');//操作日志
  818. printerror('UpdateClassInfosAllSuccess',$from);
  819. }
  820. echo"<meta http-equiv=\"refresh\" content=\"".$public_r['realltime'].";url=ecmschtml.php?enews=UpdateClassInfosAll&start=$end_classid&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."\">".$fun_r[OneUpdateClassInfosSuccess]."(ID:<font color=red><b>".$end_classid."</b></font>)";
  821. exit();
  822. }
  823. ?>