AddVoteMod.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"votemod");
  20. $enews=ehtmlspecialchars($_GET['enews']);
  21. $r[width]=500;
  22. $r[height]=300;
  23. $voteclass0=" checked";
  24. $doip0=" checked";
  25. $editnum=8;
  26. $url="<a href=ListVoteMod.php".$ecms_hashur['whehref'].">管理预设投票</a>&nbsp;>&nbsp;增加预设投票";
  27. //复制
  28. $docopy=RepPostStr($_GET['docopy'],1);
  29. if($docopy&&$enews=="AddVoteMod")
  30. {
  31. $copyvote=1;
  32. }
  33. //修改
  34. if($enews=="EditVoteMod"||$copyvote)
  35. {
  36. if($copyvote)
  37. {
  38. $thisdo="复制";
  39. }
  40. else
  41. {
  42. $thisdo="修改";
  43. }
  44. $voteid=(int)$_GET['voteid'];
  45. $r=$empire->fetch1("select * from {$dbtbpre}enewsvotemod where voteid='$voteid'");
  46. $url="<a href=ListVoteMod.php".$ecms_hashur['whehref'].">管理预设投票</a>&nbsp;>&nbsp;".$thisdo."预设投票:<b>".$r[title]."</b>";
  47. $str="dotime".$r[dotime];
  48. $$str=" selected";
  49. if($r[voteclass]==1)
  50. {
  51. $voteclass0="";
  52. $voteclass1=" checked";
  53. }
  54. if($r[doip]==1)
  55. {
  56. $doip0="";
  57. $doip1=" checked";
  58. }
  59. $d_record=explode("\r\n",$r[votetext]);
  60. for($i=0;$i<count($d_record);$i++)
  61. {
  62. $j=$i+1;
  63. $d_field=explode("::::::",$d_record[$i]);
  64. $allv.="<tr><td width=9%><div align=center>".$j."</div></td><td width=65%><input name=votename[] type=text id=votename[] value='".$d_field[0]."' size=30></td><td width=26%><input name=votenum[] type=text id=votenum[] value='".$d_field[1]."' size=6><input type=hidden name=vid[] value=".$j."><input type=checkbox name=delvid[] value=".$j.">删除</td></tr>";
  65. }
  66. $editnum=$j;
  67. $allv="<table width=100% border=0 cellspacing=1 cellpadding=3>".$allv."</table>";
  68. }
  69. //模板
  70. $votetemp="";
  71. $tsql=$empire->query("select tempid,tempname from ".GetTemptb("enewsvotetemp")." order by tempid");
  72. while($tr=$empire->fetch($tsql))
  73. {
  74. if($r[tempid]==$tr[tempid])
  75. {
  76. $select=" selected";
  77. }
  78. else
  79. {
  80. $select="";
  81. }
  82. $votetemp.="<option value='".$tr[tempid]."'".$select.">".$tr[tempname]."</option>";
  83. }
  84. //当前使用的模板组
  85. $thegid=GetDoTempGid();
  86. db_close();
  87. $empire=null;
  88. ?>
  89. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  90. <html>
  91. <head>
  92. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  93. <title>增加预设投票</title>
  94. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  95. <script>
  96. function doadd()
  97. {var i;
  98. var str="";
  99. var oldi=0;
  100. var j=0;
  101. oldi=parseInt(document.add.editnum.value);
  102. for(i=1;i<=document.add.vote_num.value;i++)
  103. {
  104. j=i+oldi;
  105. str=str+"<tr><td width=9% height=20> <div align=center>"+j+"</div></td><td width=65%> <div align=center><input type=text name=votename[] size=30></div></td><td width=26%> <div align=center><input type=text name=votenum[] value=0 size=6></div></td></tr>";
  106. }
  107. document.getElementById("addvote").innerHTML="<table width=100% border=0 cellspacing=1 cellpadding=3>"+str+"</table>";
  108. }
  109. </script>
  110. <script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  111. </head>
  112. <body>
  113. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  114. <tr>
  115. <td>位置:<?=$url?></td>
  116. </tr>
  117. </table>
  118. <form name="add" method="post" action="ListVoteMod.php">
  119. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id="AddVotetb">
  120. <?=$ecms_hashur['form']?>
  121. <tr class="header">
  122. <td height="25" colspan="2"><p>增加预设投票</p></td>
  123. </tr>
  124. <tr bgcolor="#FFFFFF">
  125. <td height="25">投票名称</td>
  126. <td height="25"><input name="ysvotename" type="text" id="ysvotename" value="<?=$r[ysvotename]?>" size="50"></td>
  127. </tr>
  128. <tr bgcolor="#FFFFFF">
  129. <td width="21%" height="25">主题标题<font color="#666666">(最大60个汉字)</font></td>
  130. <td width="79%" height="25"><input name="title" type="text" id="title" size="50" value="<?=$r[title]?>">
  131. <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="voteid" type="hidden" id="voteid" value="<?=$r[voteid]?>"></td>
  132. </tr>
  133. <tr bgcolor="#FFFFFF">
  134. <td height="25" valign="top"><p>投票项目<br>
  135. </p></td>
  136. <td height="25"><table width="100%" border="0" cellspacing="1" cellpadding="3">
  137. <tr>
  138. <td><table width="100%" border="0" cellspacing="1" cellpadding="3">
  139. <tr bgcolor="#DBEAF5">
  140. <td width="9%" height="20"> <div align="center">编号</div></td>
  141. <td width="65%"> <div align="center">项目名称</div></td>
  142. <td width="26%"> <div align="center">投票数</div></td>
  143. </tr>
  144. </table>
  145. <?
  146. if($enews=="EditVoteMod"||$copyvote)
  147. {echo"$allv";}
  148. else
  149. {
  150. ?>
  151. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  152. <tr>
  153. <td height="24" width="9%"> <div align="center">1</div></td>
  154. <td height="24" width="65%"> <div align="center">
  155. <input name="votename[]" type="text" id="votename[]" size="30">
  156. </div></td>
  157. <td height="24" width="26%"> <div align="center">
  158. <input name="votenum[]" type="text" id="votenum[]" value="0" size="6">
  159. </div></td>
  160. </tr>
  161. <tr>
  162. <td height="24"> <div align="center">2</div></td>
  163. <td height="24"> <div align="center">
  164. <input name="votename[]" type="text" id="votename[]" size="30">
  165. </div></td>
  166. <td height="24"> <div align="center">
  167. <input name="votenum[]" type="text" id="votenum[]" value="0" size="6">
  168. </div></td>
  169. </tr>
  170. <tr>
  171. <td height="24"> <div align="center">3</div></td>
  172. <td height="24"> <div align="center">
  173. <input name="votename[]" type="text" id="votename[]" size="30">
  174. </div></td>
  175. <td height="24"> <div align="center">
  176. <input name="votenum[]" type="text" id="votenum[]" value="0" size="6">
  177. </div></td>
  178. </tr>
  179. <tr>
  180. <td height="24"> <div align="center">4</div></td>
  181. <td height="24"> <div align="center">
  182. <input name="votename[]" type="text" id="votename[]" size="30">
  183. </div></td>
  184. <td height="24"> <div align="center">
  185. <input name="votenum[]" type="text" id="votenum[]" value="0" size="6">
  186. </div></td>
  187. </tr>
  188. <tr>
  189. <td height="24"> <div align="center">5</div></td>
  190. <td height="24"> <div align="center">
  191. <input name="votename[]" type="text" id="votename[]" size="30">
  192. </div></td>
  193. <td height="24"> <div align="center">
  194. <input name="votenum[]" type="text" id="votenum[]" value="0" size="6">
  195. </div></td>
  196. </tr>
  197. <tr>
  198. <td height="24"> <div align="center">6</div></td>
  199. <td height="24"> <div align="center">
  200. <input name="votename[]" type="text" id="votename[]" size="30">
  201. </div></td>
  202. <td height="24"> <div align="center">
  203. <input name="votenum[]" type="text" id="votenum[]" value="0" size="6">
  204. </div></td>
  205. </tr>
  206. <tr>
  207. <td height="24"> <div align="center">7</div></td>
  208. <td height="24"> <div align="center">
  209. <input name="votename[]" type="text" id="votename[]" size="30">
  210. </div></td>
  211. <td height="24"> <div align="center">
  212. <input name="votenum[]" type="text" id="votenum[]" value="0" size="6">
  213. </div></td>
  214. </tr>
  215. <tr>
  216. <td height="24"> <div align="center">8</div></td>
  217. <td height="24"> <div align="center">
  218. <input name="votename[]" type="text" id="votename[]" size="30">
  219. </div></td>
  220. <td height="24"> <div align="center">
  221. <input name="votenum[]" type="text" id="votenum[]" value="0" size="6">
  222. </div></td>
  223. </tr>
  224. </table>
  225. <?
  226. }
  227. ?>
  228. </td>
  229. </tr>
  230. <tr>
  231. <td>投票扩展数量:
  232. <input name="vote_num" type="text" id="vote_num" value="1" size="6">
  233. <input type="button" name="Submit52" value="输出地址" onclick="javascript:doadd();">
  234. <input name="editnum" type="hidden" id="editnum" value="<?=$editnum?>">
  235. </td>
  236. </tr>
  237. <tr>
  238. <td id=addvote></td>
  239. </tr>
  240. </table></td>
  241. </tr>
  242. <tr bgcolor="#FFFFFF">
  243. <td height="25">投票类型:</td>
  244. <td height="25"><input name="voteclass" type="radio" value="0"<?=$voteclass0?>>
  245. 单选
  246. <input type="radio" name="voteclass" value="1"<?=$voteclass1?>>
  247. 复选</td>
  248. </tr>
  249. <tr bgcolor="#FFFFFF">
  250. <td height="25">限制IP:</td>
  251. <td height="25"><input type="radio" name="doip" value="0"<?=$doip0?>>
  252. 不限制
  253. <input name="doip" type="radio" value="1"<?=$doip1?>>
  254. 限制<font color="#666666">(限制后同一IP只能投一次票)</font></td>
  255. </tr>
  256. <tr bgcolor="#FFFFFF">
  257. <td height="25">过期时间:</td>
  258. <td height="25"> <input name=olddotime type=hidden value="<?=$r[dotime]?>">
  259. <input name="dotime" type="text" id="dotime2" value="<?=$r[dotime]?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  260. <font color="#666666">(超过此期限,将不能投票,0000-00-00为不限制)</font></td>
  261. </tr>
  262. <tr bgcolor="#FFFFFF">
  263. <td height="25">查看投票窗口:</td>
  264. <td height="25">宽度:
  265. <input name="width" type="text" id="width" value="<?=$r[width]?>" size="6">
  266. 高度:
  267. <input name="height" type="text" id="height" value="<?=$r[height]?>" size="6"></td>
  268. </tr>
  269. <tr bgcolor="#FFFFFF">
  270. <td height="25">选择模板:</td>
  271. <td height="25"><select name="tempid" id="tempid">
  272. <?=$votetemp?>
  273. </select> <input type="button" name="Submit62223" value="管理投票模板" onclick="window.open('../template/ListVotetemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');">
  274. </td>
  275. </tr>
  276. <tr bgcolor="#FFFFFF">
  277. <td height="25">&nbsp;</td>
  278. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  279. </tr>
  280. </table>
  281. </form>
  282. </body>
  283. </html>