| 1 | <?php
|
|---|
| 2 | // $Id: pollresults.php,v 1.3 2005/09/04 20:46:12 onokazu Exp $
|
|---|
| 3 | // ------------------------------------------------------------------------ //
|
|---|
| 4 | // XOOPS - PHP Content Management System //
|
|---|
| 5 | // Copyright (c) 2000 XOOPS.org //
|
|---|
| 6 | // <http://www.xoops.org/> //
|
|---|
| 7 | // ------------------------------------------------------------------------ //
|
|---|
| 8 | // This program is free software; you can redistribute it and/or modify //
|
|---|
| 9 | // it under the terms of the GNU General Public License as published by //
|
|---|
| 10 | // the Free Software Foundation; either version 2 of the License, or //
|
|---|
| 11 | // (at your option) any later version. //
|
|---|
| 12 | // //
|
|---|
| 13 | // You may not change or alter any portion of this comment or credits //
|
|---|
| 14 | // of supporting developers from this source code or any supporting //
|
|---|
| 15 | // source code which is considered copyrighted (c) material of the //
|
|---|
| 16 | // original comment or credit authors. //
|
|---|
| 17 | // //
|
|---|
| 18 | // This program is distributed in the hope that it will be useful, //
|
|---|
| 19 | // but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|---|
| 20 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|---|
| 21 | // GNU General Public License for more details. //
|
|---|
| 22 | // //
|
|---|
| 23 | // You should have received a copy of the GNU General Public License //
|
|---|
| 24 | // along with this program; if not, write to the Free Software //
|
|---|
| 25 | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA //
|
|---|
| 26 | // ------------------------------------------------------------------------ //
|
|---|
| 27 |
|
|---|
| 28 | include "../../mainfile.php";
|
|---|
| 29 | include XOOPS_ROOT_PATH."/modules/xoopspoll/include/constants.php";
|
|---|
| 30 | include_once XOOPS_ROOT_PATH."/modules/xoopspoll/class/xoopspoll.php";
|
|---|
| 31 | include_once XOOPS_ROOT_PATH."/modules/xoopspoll/class/xoopspolloption.php";
|
|---|
| 32 | include_once XOOPS_ROOT_PATH."/modules/xoopspoll/class/xoopspolllog.php";
|
|---|
| 33 | include_once XOOPS_ROOT_PATH."/modules/xoopspoll/class/xoopspollrenderer.php";
|
|---|
| 34 |
|
|---|
| 35 | $arrForm = $_POST;
|
|---|
| 36 |
|
|---|
| 37 | $poll_id = $_GET['poll_id'];
|
|---|
| 38 | if(empty($poll_id)) $poll_id = $arrForm['poll_id'];
|
|---|
| 39 |
|
|---|
| 40 | switch($_POST['mode']) {
|
|---|
| 41 | case 'regist':
|
|---|
| 42 | // Error Check
|
|---|
| 43 | $arrErr = lfErrCheck();
|
|---|
| 44 | if(count($arrErr) <= 0) {
|
|---|
| 45 | $poll = new XoopsPoll($poll_id);
|
|---|
| 46 | $poll->insertOption($arrForm);
|
|---|
| 47 | redirect_header(XOOPS_URL."/modules/xoopspoll/pollresults.php?poll_id=".$poll_id, 1, "ÅÐÏ¿¤¬´°Î»Ãפ·¤Þ¤·¤¿¡£");
|
|---|
| 48 | exit();
|
|---|
| 49 | }
|
|---|
| 50 | break;
|
|---|
| 51 | default:
|
|---|
| 52 | break;
|
|---|
| 53 | }
|
|---|
| 54 |
|
|---|
| 55 | $xoopsOption['template_main'] = 'xoopspoll_new.html';
|
|---|
| 56 | include XOOPS_ROOT_PATH."/header.php";
|
|---|
| 57 |
|
|---|
| 58 | $xoopsTpl->assign('arrForm', $arrForm);
|
|---|
| 59 | $xoopsTpl->assign('arrErr', $arrErr);
|
|---|
| 60 | $xoopsTpl->assign('arrStatus', $arrStatus);
|
|---|
| 61 | $xoopsTpl->assign('arrCat', $arrCategory);
|
|---|
| 62 | $xoopsTpl->assign('poll_id', $poll_id);
|
|---|
| 63 |
|
|---|
| 64 | include XOOPS_ROOT_PATH."/footer.php";
|
|---|
| 65 |
|
|---|
| 66 | //---------------------------------------------------------------------------------------------------
|
|---|
| 67 |
|
|---|
| 68 | function lfErrCheck($arrForm) {
|
|---|
| 69 |
|
|---|
| 70 | $title_len = 50;
|
|---|
| 71 | $body_len = 500;
|
|---|
| 72 |
|
|---|
| 73 | $arrErr = array();
|
|---|
| 74 |
|
|---|
| 75 | if(empty($arrForm['title'])) {
|
|---|
| 76 | $arrErr['title'] = " ¢¨ ¥¿¥¤¥È¥ë¤òÆþÎϤ·¤Æ²¼¤µ¤¤¡£";
|
|---|
| 77 | } else {
|
|---|
| 78 | if(mb_strlen($arrForm['title']) > $title_len) $arrErr['title'] = " ¢¨ ¥¿¥¤¥È¥ë¤Ï$title_lenʸ»ú°ÊÆâ¤ÇÆþÎϤ·¤Æ²¼¤µ¤¤¡£";
|
|---|
| 79 | }
|
|---|
| 80 |
|
|---|
| 81 | if(empty($arrForm['body'])) {
|
|---|
| 82 | $arrErr['body'] = " ¢¨ ÆâÍÆ¤òÆþÎϤ·¤Æ²¼¤µ¤¤¡£";
|
|---|
| 83 | } else {
|
|---|
| 84 | if(mb_strlen($arrForm['body']) > $title_len) $arrErr['title'] = " ¢¨ ÆâÍÆ¤Ï$body_lenʸ»ú°ÊÆâ¤ÇÆþÎϤ·¤Æ²¼¤µ¤¤¡£";
|
|---|
| 85 | }
|
|---|
| 86 |
|
|---|
| 87 | return $arrErr;
|
|---|
| 88 | }
|
|---|
| 89 |
|
|---|
| 90 | ?> |
|---|