123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
- /**
- * 投票模块编辑
- *
- * @version $Id: vote_edit.php 1 23:54 2010年7月20日Z tianya $
- * @package DedeCMS.Administrator
- * @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
- * @license http://help.dedecms.com/usersguide/license.html
- * @link http://www.dedecms.com
- */
- require(dirname(__FILE__)."/config.php");
- CheckPurview('plus_投票模块');
- require_once(DEDEINC."/dedetag.class.php");
- if(empty($dopost)) $dopost="";
- $aid = isset($aid) && is_numeric($aid) ? $aid : 0;
- $ENV_GOBACK_URL = empty($_COOKIE['ENV_GOBACK_URL']) ? "vote_main.php" : $_COOKIE['ENV_GOBACK_URL'];
- if($dopost=="delete")
- {
- if($dsql->ExecuteNoneQuery("DELETE FROM #@__vote WHERE aid='$aid'"))
- {
- if($dsql->ExecuteNoneQuery("DELETE FROM #@__vote_member WHERE voteid='$aid'"))
- {
- ShowMsg('成功删除一组投票!', $ENV_GOBACK_URL);
- exit;
- }
- }
- else
- {
- ShowMsg('指定删除投票不存在!', $ENV_GOBACK_URL);
- exit;
- }
- }
- else if($dopost=="saveedit")
- {
- $starttime = GetMkTime($starttime);
- $endtime = GetMkTime($endtime);
- $query = "UPDATE #@__vote SET votename='$votename',
- starttime='$starttime',
- endtime='$endtime',
- totalcount='$totalcount',
- ismore='$ismore',
- votenote='$votenote',
- isallow='$isallow',
- view='$view',
- spec='$spec',
- isenable='$isenable'
- WHERE aid='$aid'
- ";
- if($dsql->ExecuteNoneQuery($query))
- {
- $vt = new DedeVote($aid);
- $vote_file = DEDEDATA."/vote/vote_".$aid.".js";
- $vote_content = $vt->GetVoteForm();
- $vote_content = preg_replace(array("#/#","#([\r\n])[\s]+#"),array("\/"," "),$vote_content); //取出内容中的空白字符并进行转义
- $vote_content = 'document.write("'.$vote_content.'");';
- file_put_contents($vote_file,$vote_content);
- ShowMsg('成功更改一组投票!',$ENV_GOBACK_URL);
- }
- else
- {
- ShowMsg('更改一组投票失败!',$ENV_GOBACK_URL);
- }
- }
- else
- {
- $row = $dsql->GetOne("SELECT * FROM #@__vote WHERE aid='$aid'");
- if(!is_array($row))
- {
- ShowMsg('指定投票不存在!', '-1');
- exit();
- }
- include DedeInclude('templets/vote_edit.htm');
- }
|