ecmstemp.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../class/connect.php");
  4. require("../class/db_sql.php");
  5. require("../class/functions.php");
  6. require LoadLang("pub/fun.php");
  7. require("../class/t_functions.php");
  8. require("../data/dbcache/class.php");
  9. require("../data/dbcache/MemberLevel.php");
  10. $link=db_connect();
  11. $empire=new mysqlquery();
  12. $enews=$_POST['enews'];
  13. if(empty($enews))
  14. {
  15. $enews=$_GET['enews'];
  16. }
  17. //验证用户
  18. $lur=is_login();
  19. $logininid=$lur['userid'];
  20. $loginin=$lur['username'];
  21. $loginrnd=$lur['rnd'];
  22. $loginlevel=$lur['groupid'];
  23. $loginadminstyleid=$lur['adminstyleid'];
  24. hCheckEcmsRHash();
  25. $incftp=0;
  26. if($public_r['phpmode'])
  27. {
  28. include("../class/ftp.php");
  29. $incftp=1;
  30. }
  31. //防采集
  32. if($public_r['opennotcj'])
  33. {
  34. @include("../data/dbcache/notcj.php");
  35. }
  36. require("../class/tempfun.php");
  37. if($enews=="EditGbooktemp")//修改留言板模板
  38. {
  39. $temptext=$_POST[temptext];
  40. EditGbooktemp($temptext,$logininid,$loginin);
  41. }
  42. elseif($enews=="EditCptemp")//修改控制面板模板
  43. {
  44. $temptext=$_POST[temptext];
  45. EditCptemp($temptext,$logininid,$loginin);
  46. }
  47. elseif($enews=="EditLoginIframe")//修改登陆状态模板
  48. {
  49. $temptext=$_POST[temptext];
  50. EditLoginIframe($temptext,$logininid,$loginin);
  51. }
  52. elseif($enews=="EditLoginJstemp")//修改JS调用登陆状态模板
  53. {
  54. $temptext=$_POST[temptext];
  55. EditLoginJstemp($temptext,$logininid,$loginin);
  56. }
  57. elseif($enews=="EditSchallTemp")//修改全站搜索模板
  58. {
  59. $temptext=$_POST[temptext];
  60. EditSchallTemp($temptext,$_POST['schallsubnum'],$_POST['schalldate'],$logininid,$loginin);
  61. }
  62. elseif($enews=="AddBq")//增加标签
  63. {
  64. $add=$_POST['add'];
  65. $bqsay=$_POST['bqsay'];
  66. AddBq($add,$bqsay,$logininid,$loginin);
  67. }
  68. elseif($enews=="EditBq")//修改标签
  69. {
  70. $add=$_POST['add'];
  71. $bqsay=$_POST['bqsay'];
  72. EditBq($add,$bqsay,$logininid,$loginin);
  73. }
  74. elseif($enews=="DelBq")//删除标签
  75. {
  76. $bqid=$_GET['bqid'];
  77. $cid=$_GET['cid'];
  78. DelBq($bqid,$cid,$logininid,$loginin);
  79. }
  80. elseif($enews=="EditSearchTemp")//修改搜索表单模板
  81. {
  82. $tempname=$_POST['tempname'];
  83. $temptext=$_POST['temptext'];
  84. EditSearchTemp($tempname,$temptext,$logininid,$loginin);
  85. }
  86. elseif($enews=="EditOtherLinkTemp")//修改相关链接模板
  87. {
  88. $tempname=$_POST['tempname'];
  89. $temptext=$_POST['temptext'];
  90. EditOtherLinkTemp($tempname,$temptext,$logininid,$loginin);
  91. }
  92. elseif($enews=="EditOtherPubTemp")//修改其它公共模板
  93. {
  94. $tempname=$_POST['tempname'];
  95. $temptext=$_POST['temptext'];
  96. EditOtherPubTemp($tempname,$temptext,$logininid,$loginin);
  97. }
  98. elseif($enews=="EditPublicTemp")//修改首页模板
  99. {
  100. $temptext=$_POST['temptext'];
  101. EditIndextemp($temptext,$logininid,$loginin);
  102. }
  103. elseif($enews=="LoadTempInClass")//批量导入栏目模板
  104. {
  105. $path=$_GET['path'];
  106. $start=$_GET['start'];
  107. LoadTempInClass($path,$start,$logininid,$loginin);
  108. }
  109. elseif($enews=="ChangeClassListtemp")//批量更换栏目列表模板
  110. {
  111. $classid=$_POST['classid'];
  112. $listtempid=$_POST['listtempid'];
  113. ChangeClassListtemp($classid,$listtempid,$logininid,$loginin);
  114. }
  115. elseif($enews=="LoadOutBq")//导出标签
  116. {
  117. LoadOutBq($_POST,$logininid,$loginin);
  118. }
  119. elseif($enews=="ReEBakTemp")//还原模板备份
  120. {
  121. ReEBakTemp($_GET,$logininid,$loginin);
  122. }
  123. elseif($enews=="PreviewIndexpage")//预览首页方案
  124. {
  125. PreviewIndexpage($_GET['tempid'],$logininid,$loginin);
  126. }
  127. else
  128. {
  129. printerror("ErrorUrl","history.go(-1)");
  130. }
  131. db_close();
  132. $empire=null;
  133. ?>