ListVote.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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,"vote");
  21. //增加投票
  22. function AddVote($title,$votename,$votenum,$delvid,$vid,$voteclass,$doip,$dotime,$width,$height,$tempid,$userid,$username){
  23. global $empire,$dbtbpre;
  24. if(!$title||!$tempid)
  25. {printerror("EmptyVoteTitle","history.go(-1)");}
  26. //验证权限
  27. CheckLevel($userid,$username,$classid,"vote");
  28. //返回组合
  29. $votetext=ReturnVote($votename,$votenum,$delvid,$vid,0);
  30. //统计总票数
  31. for($i=0;$i<count($votename);$i++)
  32. {$t_votenum+=$votenum[$i];}
  33. $votetime=to_date($dotime);
  34. $addtime=date("Y-m-d H:i:s");
  35. $t_votenum=(int)$t_votenum;
  36. $voteclass=(int)$voteclass;
  37. $votetime=(int)$votetime;
  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. $dotime=hRepPostStr($dotime,1);
  45. $sql=$empire->query("insert into {$dbtbpre}enewsvote(title,votetext,votenum,voteip,voteclass,doip,votetime,dotime,width,height,addtime,tempid) values('$title','$votetext',$t_votenum,'',$voteclass,$doip,$votetime,'$dotime',$width,$height,'$addtime',$tempid);");
  46. //生成投票js
  47. $voteid=$empire->lastid();
  48. GetVoteJs($voteid);
  49. if($sql)
  50. {
  51. //操作日志
  52. insert_dolog("voteid=".$voteid."<br>title=".$title);
  53. printerror("AddVoteSuccess","AddVote.php?enews=AddVote".hReturnEcmsHashStrHref2(0));
  54. }
  55. else
  56. {printerror("DbError","history.go(-1)");}
  57. }
  58. //修改投票
  59. function EditVote($voteid,$title,$votename,$votenum,$delvid,$vid,$voteclass,$doip,$dotime,$width,$height,$tempid,$userid,$username){
  60. global $empire,$dbtbpre;
  61. $voteid=(int)$voteid;
  62. if(!$voteid||!$title||!$tempid)
  63. {printerror("EmptyVoteTitle","history.go(-1)");}
  64. //验证权限
  65. CheckLevel($userid,$username,$classid,"vote");
  66. //返回组合
  67. $votetext=ReturnVote($votename,$votenum,$delvid,$vid,1);
  68. //统计总票数
  69. for($i=0;$i<count($votename);$i++)
  70. {$t_votenum+=$votenum[$i];}
  71. $r=$empire->fetch1("select dotime,votetime from {$dbtbpre}enewsvote where voteid='$voteid'");
  72. $votetime=to_date($dotime);
  73. //处理变量
  74. $t_votenum=(int)$t_votenum;
  75. $voteclass=(int)$voteclass;
  76. $votetime=(int)$votetime;
  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. $dotime=hRepPostStr($dotime,1);
  84. $sql=$empire->query("update {$dbtbpre}enewsvote set title='$title',votetext='$votetext',votenum=$t_votenum,voteclass=$voteclass,doip=$doip,dotime='$dotime',votetime=$votetime,width=$width,height=$height,tempid=$tempid where voteid='$voteid'");
  85. //生成投票js
  86. GetVoteJs($voteid);
  87. if($sql)
  88. {
  89. //操作日志
  90. insert_dolog("voteid=".$voteid."<br>title=".$title);
  91. printerror("EditVoteSuccess","ListVote.php".hReturnEcmsHashStrHref2(1));
  92. }
  93. else
  94. {printerror("DbError","history.go(-1)");}
  95. }
  96. //删除投票
  97. function DelVote($voteid,$userid,$username){
  98. global $empire,$dbtbpre;
  99. $voteid=(int)$voteid;
  100. if(!$voteid)
  101. {printerror("NotDelVoteid","history.go(-1)");}
  102. //验证权限
  103. CheckLevel($userid,$username,$classid,"vote");
  104. $r=$empire->fetch1("select title from {$dbtbpre}enewsvote where voteid='$voteid'");
  105. $sql=$empire->query("delete from {$dbtbpre}enewsvote where voteid='$voteid'");
  106. $file="../../../d/js/vote/vote".$voteid.".js";
  107. DelFiletext($file);
  108. if($sql)
  109. {
  110. //操作日志
  111. insert_dolog("voteid=".$voteid."<br>title=".$r[title]);
  112. printerror("DelVoteSuccess","ListVote.php".hReturnEcmsHashStrHref2(1));
  113. }
  114. else
  115. {printerror("DbError","history.go(-1)");}
  116. }
  117. //批量生成投票
  118. function ReVoteJs_all($start=0,$from,$userid,$username){
  119. global $empire,$public_r,$fun_r,$dbtbpre;
  120. $moreportpid=(int)$_GET['moreportpid'];
  121. $mphref='';
  122. if($moreportpid)
  123. {
  124. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  125. }
  126. $start=(int)$start;
  127. $b=0;
  128. $sql=$empire->query("select voteid from {$dbtbpre}enewsvote where voteid>$start order by voteid limit ".$public_r['revotejsnum']);
  129. while($r=$empire->fetch($sql))
  130. {
  131. $b=1;
  132. $newstart=$r[voteid];
  133. GetVoteJs($r[voteid]);
  134. }
  135. if(empty($b))
  136. {
  137. //操作日志
  138. insert_dolog("");
  139. printerror("ReVoteJsSuccess",$from);
  140. }
  141. echo $fun_r['OneReVoteJsSuccess']."(ID:<font color=red><b>".$newstart."</b></font>)<script>self.location.href='ListVote.php?enews=ReVoteJs_all&start=$newstart&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  142. exit();
  143. }
  144. //生成投票js
  145. function GetVoteJs($voteid){
  146. global $empire,$public_r,$fun_r,$dbtbpre;
  147. $r=$empire->fetch1("select * from {$dbtbpre}enewsvote where voteid='$voteid'");
  148. //模板
  149. $votetemp=ReturnVoteTemp($r[tempid],1);
  150. $votetemp=RepVoteTempAllvar($votetemp,$r);
  151. $listexp="[!--empirenews.listtemp--]";
  152. $listtemp_r=explode($listexp,$votetemp);
  153. $file=eReturnTrueEcmsPath()."d/js/vote/vote".$voteid.".js";
  154. $r_exp="\r\n";
  155. $f_exp="::::::";
  156. //项目数
  157. $r_r=explode($r_exp,$r[votetext]);
  158. $checked=0;
  159. for($i=0;$i<count($r_r);$i++)
  160. {
  161. $checked++;
  162. $f_r=explode($f_exp,$r_r[$i]);
  163. //投票类型
  164. if($r[voteclass])
  165. {$vote="<input type=checkbox name=vote[] value=".$checked.">";}
  166. else
  167. {$vote="<input type=radio name=vote value=".$checked.">";}
  168. $votetext.=RepVoteTempListvar($listtemp_r[1],$vote,$f_r[0]);
  169. }
  170. $votetext="document.write(\"".addslashes(stripSlashes($listtemp_r[0].$votetext.$listtemp_r[2]))."\");";
  171. WriteFiletext_n($file,$votetext);
  172. }
  173. $enews=$_POST['enews'];
  174. if(empty($enews))
  175. {$enews=$_GET['enews'];}
  176. if($enews)
  177. {
  178. hCheckEcmsRHash();
  179. }
  180. //设置访问端
  181. $moreportpid=0;
  182. if($enews=='ReVoteJs_all')
  183. {
  184. $moreportpid=Moreport_hDoSetSelfPath(0);
  185. }
  186. //增加投票
  187. if($enews=="AddVote")
  188. {
  189. $title=$_POST['title'];
  190. $votename=$_POST['votename'];
  191. $votenum=$_POST['votenum'];
  192. $delvid=$_POST['delvid'];
  193. $vid=$_POST['vid'];
  194. $voteclass=$_POST['voteclass'];
  195. $doip=$_POST['doip'];
  196. $dotime=$_POST['dotime'];
  197. $width=$_POST['width'];
  198. $height=$_POST['height'];
  199. $tempid=$_POST['tempid'];
  200. AddVote($title,$votename,$votenum,$delvid,$vid,$voteclass,$doip,$dotime,$width,$height,$tempid,$logininid,$loginin);
  201. }
  202. //修改投票
  203. elseif($enews=="EditVote")
  204. {
  205. $voteid=$_POST['voteid'];
  206. $title=$_POST['title'];
  207. $votename=$_POST['votename'];
  208. $votenum=$_POST['votenum'];
  209. $delvid=$_POST['delvid'];
  210. $vid=$_POST['vid'];
  211. $voteclass=$_POST['voteclass'];
  212. $doip=$_POST['doip'];
  213. $dotime=$_POST['dotime'];
  214. $width=$_POST['width'];
  215. $height=$_POST['height'];
  216. $tempid=$_POST['tempid'];
  217. EditVote($voteid,$title,$votename,$votenum,$delvid,$vid,$voteclass,$doip,$dotime,$width,$height,$tempid,$logininid,$loginin);
  218. }
  219. //删除投票
  220. elseif($enews=="DelVote")
  221. {
  222. $voteid=$_GET['voteid'];
  223. DelVote($voteid,$logininid,$loginin);
  224. }
  225. //批量刷新投票JS
  226. elseif($enews=="ReVoteJs_all")
  227. {
  228. ReVoteJs_all($_GET['start'],$_GET['from'],$logininid,$loginin);
  229. }
  230. $search=$ecms_hashur['ehref'];
  231. $page=(int)$_GET['page'];
  232. $page=RepPIntvar($page);
  233. $start=0;
  234. $line=20;//每页显示条数
  235. $page_line=12;//每页显示链接数
  236. $offset=$page*$line;//总偏移量
  237. $query="select voteid,title,addtime from {$dbtbpre}enewsvote";
  238. $num=$empire->num($query);//取得总条数
  239. $query=$query." order by voteid desc limit $offset,$line";
  240. $sql=$empire->query($query);
  241. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  242. $url="<a href=ListVote.php".$ecms_hashur['whehref'].">管理投票</a>";
  243. ?>
  244. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  245. <html>
  246. <head>
  247. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  248. <title>投票</title>
  249. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  250. </head>
  251. <body>
  252. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  253. <tr>
  254. <td width="50%">位置:
  255. <?=$url?>
  256. </td>
  257. <td><div align="right" class="emenubutton">
  258. <input type="button" name="Submit5" value="增加投票" onclick="self.location.href='AddVote.php?enews=AddVote<?=$ecms_hashur['ehref']?>';">
  259. </div></td>
  260. </tr>
  261. </table>
  262. <br>
  263. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  264. <tr class="header">
  265. <td width="5%" height="25"><div align="center">ID</div></td>
  266. <td width="32%" height="25"><div align="center">投票标题</div></td>
  267. <td width="18%" height="25"><div align="center">发布时间</div></td>
  268. <td width="26%" height="25">调用地址</td>
  269. <td width="19%" height="25"><div align="center">操作</div></td>
  270. </tr>
  271. <?
  272. while($r=$empire->fetch($sql))
  273. {
  274. ?>
  275. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  276. <td height="25"><div align="center"><?=$r[voteid]?></div></td>
  277. <td height="25"><?=$r[title]?></td>
  278. <td height="25"><div align="center"><?=$r[addtime]?></div>
  279. </td>
  280. <td height="25"><input name="textfield" type="text" value="<?=$public_r[newsurl]?>d/js/vote/vote<?=$r[voteid]?>.js">
  281. [<a href="../view/js.php?js=vote<?=$r[voteid]?>&p=vote<?=$ecms_hashur['ehref']?>" target="_blank">预览</a>]</td>
  282. <td height="25"><div align="center">[<a href="AddVote.php?enews=EditVote&voteid=<?=$r[voteid]?><?=$ecms_hashur['ehref']?>">修改</a>]
  283. [<a href="ListVote.php?enews=DelVote&voteid=<?=$r[voteid]?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  284. </tr>
  285. <?
  286. }
  287. ?>
  288. <tr bgcolor="#FFFFFF">
  289. <td height="25" colspan="5">&nbsp;<?=$returnpage?></td>
  290. </tr>
  291. <tr bgcolor="#FFFFFF">
  292. <td height="25" colspan="5"><font color="#666666">说明:模板中显示投票的地方加上:&lt;script
  293. src=调用地址&gt;&lt;/script&gt; 或者 [phomevote]投票ID[/phomevote]</font></td>
  294. </tr>
  295. </table>
  296. </body>
  297. </html>
  298. <?
  299. db_close();
  300. $empire=null;
  301. ?>