ListVoteMod.php 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  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. $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. CheckLevel($logininid,$loginin,$classid,"votemod");
  21. //增加预设投票
  22. function AddVoteMod($ysvotename,$title,$votename,$votenum,$delvid,$vid,$voteclass,$doip,$dotime,$width,$height,$tempid,$userid,$username){
  23. global $empire,$dbtbpre;
  24. if(!$ysvotename||!$tempid)
  25. {
  26. printerror("EmptyVoteTitle","history.go(-1)");
  27. }
  28. //返回组合
  29. $votetext=ReturnVote($votename,$votenum,$delvid,$vid,0);
  30. //统计总票数
  31. for($i=0;$i<count($votename);$i++)
  32. {
  33. $t_votenum+=$votenum[$i];
  34. }
  35. //$dotime=date("Y-m-d");
  36. $t_votenum=(int)$t_votenum;
  37. $voteclass=(int)$voteclass;
  38. $width=(int)$width;
  39. $height=(int)$height;
  40. $doip=(int)$doip;
  41. $tempid=(int)$tempid;
  42. $title=hRepPostStr($title,1);
  43. $votetext=AddAddsData($votetext);
  44. $ysvotename=hRepPostStr($ysvotename,1);
  45. $dotime=hRepPostStr($dotime,1);
  46. $sql=$empire->query("insert into {$dbtbpre}enewsvotemod(title,votetext,voteclass,doip,dotime,tempid,width,height,votenum,ysvotename) values('$title','$votetext',$voteclass,$doip,'$dotime',$tempid,$width,$height,$t_votenum,'$ysvotename');");
  47. $voteid=$empire->lastid();
  48. if($sql)
  49. {
  50. //操作日志
  51. insert_dolog("voteid=".$voteid."<br>title=".$title);
  52. printerror("AddVoteSuccess","AddVoteMod.php?enews=AddVoteMod".hReturnEcmsHashStrHref2(0));
  53. }
  54. else
  55. {
  56. printerror("DbError","history.go(-1)");
  57. }
  58. }
  59. //修改预设投票
  60. function EditVoteMod($voteid,$ysvotename,$title,$votename,$votenum,$delvid,$vid,$voteclass,$doip,$dotime,$width,$height,$tempid,$userid,$username){
  61. global $empire,$dbtbpre;
  62. $voteid=(int)$voteid;
  63. if(!$voteid||!$ysvotename||!$tempid)
  64. {
  65. printerror("EmptyVoteTitle","history.go(-1)");
  66. }
  67. //返回组合
  68. $votetext=ReturnVote($votename,$votenum,$delvid,$vid,1);
  69. //统计总票数
  70. for($i=0;$i<count($votename);$i++)
  71. {
  72. $t_votenum+=$votenum[$i];
  73. }
  74. //处理变量
  75. $t_votenum=(int)$t_votenum;
  76. $voteclass=(int)$voteclass;
  77. $width=(int)$width;
  78. $height=(int)$height;
  79. $doip=(int)$doip;
  80. $tempid=(int)$tempid;
  81. $title=hRepPostStr($title,1);
  82. $votetext=AddAddsData($votetext);
  83. $ysvotename=hRepPostStr($ysvotename,1);
  84. $dotime=hRepPostStr($dotime,1);
  85. $sql=$empire->query("update {$dbtbpre}enewsvotemod set title='$title',votetext='$votetext',voteclass=$voteclass,doip=$doip,dotime='$dotime',tempid=$tempid,width=$width,height=$height,votenum=$t_votenum,ysvotename='$ysvotename' where voteid='$voteid'");
  86. if($sql)
  87. {
  88. //操作日志
  89. insert_dolog("voteid=".$voteid."<br>title=".$title);
  90. printerror("EditVoteSuccess","ListVoteMod.php".hReturnEcmsHashStrHref2(1));
  91. }
  92. else
  93. {
  94. printerror("DbError","history.go(-1)");
  95. }
  96. }
  97. //删除预设投票
  98. function DelVoteMod($voteid,$userid,$username){
  99. global $empire,$dbtbpre;
  100. $voteid=(int)$voteid;
  101. if(!$voteid)
  102. {
  103. printerror("NotDelVoteid","history.go(-1)");
  104. }
  105. $r=$empire->fetch1("select title from {$dbtbpre}enewsvotemod where voteid='$voteid'");
  106. $sql=$empire->query("delete from {$dbtbpre}enewsvotemod where voteid='$voteid'");
  107. if($sql)
  108. {
  109. //操作日志
  110. insert_dolog("voteid=".$voteid."<br>title=".$r[title]);
  111. printerror("DelVoteSuccess","ListVoteMod.php".hReturnEcmsHashStrHref2(1));
  112. }
  113. else
  114. {
  115. printerror("DbError","history.go(-1)");
  116. }
  117. }
  118. $enews=$_POST['enews'];
  119. if(empty($enews))
  120. {$enews=$_GET['enews'];}
  121. if($enews)
  122. {
  123. hCheckEcmsRHash();
  124. }
  125. //增加投票
  126. if($enews=="AddVoteMod")
  127. {
  128. $title=$_POST['title'];
  129. $votename=$_POST['votename'];
  130. $votenum=$_POST['votenum'];
  131. $delvid=$_POST['delvid'];
  132. $vid=$_POST['vid'];
  133. $voteclass=$_POST['voteclass'];
  134. $doip=$_POST['doip'];
  135. $dotime=$_POST['dotime'];
  136. $width=$_POST['width'];
  137. $height=$_POST['height'];
  138. $tempid=$_POST['tempid'];
  139. $ysvotename=$_POST['ysvotename'];
  140. AddVoteMod($ysvotename,$title,$votename,$votenum,$delvid,$vid,$voteclass,$doip,$dotime,$width,$height,$tempid,$logininid,$loginin);
  141. }
  142. //修改投票
  143. elseif($enews=="EditVoteMod")
  144. {
  145. $voteid=$_POST['voteid'];
  146. $title=$_POST['title'];
  147. $votename=$_POST['votename'];
  148. $votenum=$_POST['votenum'];
  149. $delvid=$_POST['delvid'];
  150. $vid=$_POST['vid'];
  151. $voteclass=$_POST['voteclass'];
  152. $doip=$_POST['doip'];
  153. $dotime=$_POST['dotime'];
  154. $width=$_POST['width'];
  155. $height=$_POST['height'];
  156. $tempid=$_POST['tempid'];
  157. $ysvotename=$_POST['ysvotename'];
  158. EditVoteMod($voteid,$ysvotename,$title,$votename,$votenum,$delvid,$vid,$voteclass,$doip,$dotime,$width,$height,$tempid,$logininid,$loginin);
  159. }
  160. //删除投票
  161. elseif($enews=="DelVoteMod")
  162. {
  163. $voteid=$_GET['voteid'];
  164. DelVoteMod($voteid,$logininid,$loginin);
  165. }
  166. $search=$ecms_hashur['ehref'];
  167. $page=(int)$_GET['page'];
  168. $page=RepPIntvar($page);
  169. $start=0;
  170. $line=20;//每页显示条数
  171. $page_line=12;//每页显示链接数
  172. $offset=$page*$line;//总偏移量
  173. $query="select voteid,ysvotename,title,voteclass from {$dbtbpre}enewsvotemod";
  174. $num=$empire->num($query);//取得总条数
  175. $query=$query." order by voteid desc limit $offset,$line";
  176. $sql=$empire->query($query);
  177. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  178. $url="<a href=ListVoteMod.php".$ecms_hashur['whehref'].">管理预设投票</a>";
  179. ?>
  180. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  181. <html>
  182. <head>
  183. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  184. <title>投票</title>
  185. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  186. </head>
  187. <body>
  188. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  189. <tr>
  190. <td width="50%">位置:
  191. <?=$url?>
  192. </td>
  193. <td><div align="right" class="emenubutton">
  194. <input type="button" name="Submit5" value="增加预设投票" onclick="self.location.href='AddVoteMod.php?enews=AddVoteMod<?=$ecms_hashur['ehref']?>';">
  195. </div></td>
  196. </tr>
  197. </table>
  198. <br>
  199. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  200. <tr class="header">
  201. <td width="10%" height="25"><div align="center">ID</div></td>
  202. <td width="43%" height="25"><div align="center">投票名称</div></td>
  203. <td width="18%" height="25"><div align="center">类型</div></td>
  204. <td width="29%" height="25"><div align="center">操作</div></td>
  205. </tr>
  206. <?
  207. while($r=$empire->fetch($sql))
  208. {
  209. $voteclass=empty($r['voteclass'])?'单选':'多选';
  210. ?>
  211. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  212. <td height="25"><div align="center">
  213. <?=$r[voteid]?>
  214. </div></td>
  215. <td height="25">
  216. <?=$r[ysvotename]?>
  217. </td>
  218. <td height="25"><div align="center">
  219. <?=$voteclass?>
  220. </div></td>
  221. <td height="25"><div align="center">[<a href="AddVoteMod.php?enews=EditVoteMod&voteid=<?=$r[voteid]?><?=$ecms_hashur['ehref']?>">修改</a>]
  222. [<a href="ListVoteMod.php?enews=DelVoteMod&voteid=<?=$r[voteid]?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  223. </tr>
  224. <?
  225. }
  226. ?>
  227. <tr bgcolor="#FFFFFF">
  228. <td height="25" colspan="4">&nbsp;
  229. <?=$returnpage?>
  230. </td>
  231. </tr>
  232. </table>
  233. </body>
  234. </html>
  235. <?
  236. db_close();
  237. $empire=null;
  238. ?>