source: temp/test-xoops.ec-cube.net/html/modules/xoopspoll/pollnew.php @ 783

Revision 783, 3.8 KB checked in by uehara, 20 years ago (diff)
Line 
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
28include "../../mainfile.php";
29include XOOPS_ROOT_PATH."/modules/xoopspoll/include/constants.php";
30include_once XOOPS_ROOT_PATH."/modules/xoopspoll/class/xoopspoll.php";
31include_once XOOPS_ROOT_PATH."/modules/xoopspoll/class/xoopspolloption.php";
32include_once XOOPS_ROOT_PATH."/modules/xoopspoll/class/xoopspolllog.php";
33include_once XOOPS_ROOT_PATH."/modules/xoopspoll/class/xoopspollrenderer.php";
34
35$arrForm = $_POST;
36
37$poll_id = $_GET['poll_id'];
38if(empty($poll_id)) $poll_id = $arrForm['poll_id'];
39
40switch($_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
56$xoopsOption['template_main'] = 'xoopspoll_new.html';
57include XOOPS_ROOT_PATH."/header.php";
58
59$xoopsTpl->assign('arrForm', $arrForm);
60$xoopsTpl->assign('arrErr', $arrErr);
61$xoopsTpl->assign('arrStatus', $arrStatus);
62$xoopsTpl->assign('arrCat', $arrCategory);
63$xoopsTpl->assign('poll_id', $poll_id);
64
65include XOOPS_ROOT_PATH."/footer.php";
66
67//---------------------------------------------------------------------------------------------------
68
69function lfErrCheck($arrForm) {
70   
71    $title_len = 50;
72    $body_len = 500;
73   
74    $arrErr = array();
75   
76    if(empty($arrForm['title'])) {
77        $arrErr['title'] = " ¢¨ ¥¿¥¤¥È¥ë¤òÆþÎϤ·¤Æ²¼¤µ¤¤¡£";
78    } else {
79        if(mb_strlen($arrForm['title']) > $title_len) $arrErr['title'] = " ¢¨ ¥¿¥¤¥È¥ë¤Ï$title_lenʸ»ú°ÊÆâ¤ÇÆþÎϤ·¤Æ²¼¤µ¤¤¡£";
80    }
81
82    if(empty($arrForm['body'])) {
83        $arrErr['body'] = " ¢¨ ÆâÍÆ¤òÆþÎϤ·¤Æ²¼¤µ¤¤¡£";
84    } else {
85        if(mb_strlen($arrForm['body']) > $title_len) $arrErr['title'] = " ¢¨ ÆâÍÆ¤Ï$body_lenʸ»ú°ÊÆâ¤ÇÆþÎϤ·¤Æ²¼¤µ¤¤¡£";
86    }
87   
88    return $arrErr;
89}
90
91?>
Note: See TracBrowser for help on using the repository browser.