source: temp/trunk/html/admin/contents/inquiry.php @ 5127

Revision 5127, 6.9 KB checked in by kakinaka, 20 years ago (diff)

blank

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1<?php
2
3require_once("../require.php");
4
5require_once("../order/index_csv.php");
6
7$arrCVSCOL = array(
8       
9                );
10                       
11$arrCVSTITLE = array(
12                '²óÅúID',
13                '¼ÁÌäID',
14                '²óÅúÆü»þ',
15                '²óÅú̾',
16                '¸ÜµÒ̾1',
17                '¸ÜµÒ̾2',
18                '¸ÜµÒ̾¥«¥Ê1',
19                '¸ÜµÒ̾¥«¥Ê2',
20                'Í¹ÊØÈÖ¹æ1',
21                'Í¹ÊØÈÖ¹æ2',
22                'ÅÔÆ»Éܸ©',
23                '½»½ê1',
24                '½»½ê2',
25                'ÅÅÏÃÈÖ¹æ1',
26                'ÅÅÏÃÈÖ¹æ2',
27                'ÅÅÏÃÈÖ¹æ3',
28                '¥á¡¼¥ë¥¢¥É¥ì¥¹',
29                '²óÅú1',
30                '²óÅú2',
31                '²óÅú3',
32                '²óÅú4',
33                '²óÅú5',
34                '²óÅú6'             
35            );
36
37
38class LC_Page {
39    var $cnt_question;
40
41    var $ERROR;
42    var $ERROR_COLOR;
43    var $MESSAGE;
44   
45    var $QUESTION_ID;
46   
47    var $arrActive;
48    var $arrQuestion;
49    var $arrSession;
50   
51    function LC_Page() {
52        $this->tpl_mainpage = 'contents/inquiry.tpl';
53        $this->tpl_mainno = 'contents';
54        $this->tpl_subnavi = 'contents/subnavi.tpl';
55        $this->tpl_subno = "inquiry";
56        $this->tpl_subtitle = '¥¢¥ó¥±¡¼¥È´ÉÍý';
57    }
58}
59
60$conn = new SC_DBConn();
61$objPage = new LC_Page();
62$objView = new SC_AdminView();
63$objSess = new SC_Session();
64
65// ǧ¾Ú²ÄÈݤÎȽÄê
66sfIsSuccess($objSess);
67
68
69$arrActive = array( "0"=>"²ÔƯ", "1"=>"Èó²ÔƯ" );
70$arrQuestion = array( "0"=>"»ÈÍѤ·¤Ê¤¤", "1"=>"¥Æ¥­¥¹¥È¥¨¥ê¥¢", "2"=>"¥Æ¥­¥¹¥È¥Ü¥Ã¥¯¥¹"
71                    , "3"=>"¥Á¥§¥Ã¥¯¥Ü¥Ã¥¯¥¹", "4"=>"¥é¥¸¥ª¥Ü¥¿¥ó"
72                );
73
74
75$sql = "SELECT *, cast(substring(create_date, 1, 10) as date) as disp_date FROM dtb_question WHERE del_flg = 0 ORDER BY question_id";
76$result = $conn->getAll($sql);
77$objPage->list_data = $result;
78                       
79if ( $_GET['mode'] == 'regist' ){
80
81    for ( $i=0; $i<count($_POST["question"]); $i++ ) {
82        $_POST['question'][$i]['name'] = mb_convert_kana( trim ( $_POST['question'][$i]['name'] ), "K" );
83        for ( $j=0; $j<count( $_POST['question'][$i]['option'] ); $j++ ){
84            $_POST['question'][$i]['option'][$j] = mb_convert_kana( trim ( $_POST['question'][$i]['option'][$j] ) );
85        }
86    }
87   
88    $error = lfErrCheck();
89       
90    if ( ! $error  ){
91       
92        if ( ! is_numeric($_POST['question_id']) ){
93            //ÅÐÏ¿
94            $value = serialize($_POST);
95            $sql_val = array( $value, $_POST['title'] ,$question_id );
96            if (DB_TYPE == "pgsql") {
97                $question_id = $objQuery->nextval('dtb_question', 'question_id');
98            }
99            $conn->query("INSERT INTO dtb_question ( question, question_name, question_id ) VALUES (?, ?, ?)", $sql_val );
100            $objPage->MESSAGE = "ÅÐÏ¿¤¬´°Î»¤·¤Þ¤·¤¿";
101           
102            $objQuery = new SC_Query();
103           
104            if (DB_TYPE == "mysql") {
105                $question_id = $objQuery->nextval('dtb_question', 'question_id');
106            }
107           
108            $objPage->QUESTION_ID = $question_id;
109            sfReload();
110        } else {
111            //ÊÔ½¸
112            $value = serialize($_POST);
113            $sql_val = array( $value, $_POST['title'] ,$_POST['question_id'] );
114            $conn->query("UPDATE dtb_question SET question = ?, question_name = ? WHERE question_id = ?", $sql_val );
115            $objPage->MESSAGE = "ÊÔ½¸¤¬´°Î»¤·¤Þ¤·¤¿";
116            $objPage->QUESTION_ID = $_POST['question_id'];
117            sfReload();
118        }
119    } else {
120       
121        //¥¨¥é¡¼É½¼¨
122        $objPage->ERROR = $error;
123        $objPage->QUESTION_ID = $_REQUEST['question_id'];
124        $objPage->ERROR_COLOR = lfGetErrColor($error, ERR_COLOR);
125
126    }
127} elseif ( ( $_GET['mode'] == 'delete' ) && ( sfCheckNumLength($_GET['question_id']) )  ){
128
129    $sql = "UPDATE dtb_question SET del_flg = 1 WHERE question_id = ?";
130    $conn->query( $sql, array( $_GET['question_id'] ) );
131    sfReload();
132   
133} elseif ( ( $_GET['mode'] == 'csv' ) && ( sfCheckNumLength($_GET['question_id']) ) ){
134
135            $head = sfGetCSVList($arrCVSTITLE);
136            $list_data = $conn->getAll("SELECT result_id,question_id,question_date,question_name,name01,name02,kana01,kana02,zip01,zip02,pref,addr01,addr02,tel01,tel02,tel03,mail01,question01,question02,question03,question04,question05,question06 FROM dtb_question_result WHERE del_flg = 0 ORDER BY result_id ASC");
137            $data = "";
138            for($i = 0; $i < count($list_data); $i++) {
139                // ³Æ¹àÌܤòCSV½ÐÎÏÍѤËÊÑ´¹¤¹¤ë¡£
140                $data .= lfMakeCSV($list_data[$i]);
141            }
142            // CSV¤òÁ÷¿®¤¹¤ë
143            sfCSVDownload($head.$data);
144            exit;
145
146} else {
147   
148    if ( is_numeric($_GET['question_id']) ){
149   
150        $sql = "SELECT question FROM dtb_question WHERE question_id = ?";
151        $result = $conn->getOne($sql, array($_GET['question_id']));
152       
153        if ( $result ){
154            $_POST = unserialize( $result );
155            $objPage->QUESTION_ID = $_GET['question_id'];
156        }
157    }
158}
159
160
161
162
163//³Æ¥Ú¡¼¥¸¶¦ÄÌ
164$objPage->cnt_question = 6;
165$objPage->arrActive = $arrActive;
166$objPage->arrQuestion = $arrQuestion;
167
168
169//----¡¡¥Ú¡¼¥¸É½¼¨
170$objView->assignobj($objPage);
171$objView->display(MAIN_FRAME);
172
173
174
175// ------------  ¥¨¥é¡¼¥Á¥§¥Ã¥¯½èÍýÉô ------------ 
176
177function lfGetErrColor( $arr, $err_color ){
178   
179    foreach ( $arr as $key=>$val ) {
180        if ( is_string($val) && strlen($val) > 0 ){
181            $return[$key] = $err_color;
182        } elseif ( is_array( $val ) ) {
183            $return[$key] = lfGetErrColor ( $val, $err_color);
184        }
185    }
186    return $return;
187}
188
189
190// ------------  ¥¨¥é¡¼¥Á¥§¥Ã¥¯½èÍýÉô ------------ 
191
192function lfErrCheck (){
193
194    $objErr = new SC_CheckError();
195    $errMsg = "";
196
197    $objErr->doFunc( array( "²ÔƯ¡¦Èó²ÔƯ", "active" ), array( "SELECT_CHECK" ) );
198   
199    $_POST["title"] = mb_convert_kana( trim (  $_POST["title"] ), "K" );
200    $objErr->doFunc( array( "¥¢¥ó¥±¡¼¥È̾", "title" ), array( "EXIST_CHECK" ) );
201
202    $_POST["contents"] = mb_convert_kana( trim (  $_POST["contents"] ), "K" );
203    $objErr->doFunc( array( "¥¢¥ó¥±¡¼¥ÈÆâÍÆ" ,"contents", "3000" ), array( "EXIST_CHECK", "MAX_LENGTH_CHECK" ) );
204
205   
206    if ( ! $_POST['question'][0]["name"] ){
207        $objErr->arrErr['question'][0]["name"] = "£±¤Ä¤á¤Î¼ÁÌä̾¤¬ÆþÎϤµ¤ì¤Æ¤¤¤Þ¤»¤ó";
208    }
209   
210    //¡¡¥Á¥§¥Ã¥¯¥Ü¥Ã¥¯¥¹¡¢¥é¥¸¥ª¥Ü¥¿¥ó¤òÁªÂò¤·¤¿¾ì¹ç¤ÏºÇÄã1¤Ä°Ê¾å¹àÌܤòµ­Æþ¤µ¤»¤ë¡£
211    for( $i = 0; $i < count( $_POST["question"] ); $i++ ) {
212       
213        if ( $_POST["question"][$i]["kind"] ) {
214            if (strlen($_POST["question"][$i]["name"]) == 0) {
215                $objErr->arrErr["question"][$i]["name"] = "¥¿¥¤¥È¥ë¤òÆþÎϤ·¤Æ²¼¤µ¤¤¡£";
216            } else if ( strlen($_POST["question"][$i]["name"]) > STEXT_LEN ) {
217                $objErr->arrErr["question"][$i]["name"] = "¥¿¥¤¥È¥ë¤Ï". STEXT_LEN  ."»ú°ÊÆâ¤ÇÆþÎϤ·¤Æ²¼¤µ¤¤¡£";
218            }
219        }
220       
221        if( $_POST["question"][$i]["kind"] == 3 || $_POST["question"][$i]["kind"] == 4  ) {
222
223            $temp_data = array();
224            for( $j = 0; $j < count( $_POST["question"][$i]["option"] ); $j++ ) {   
225
226                // ¹àÌܴ֡ʥƥ­¥¹¥È¥Ü¥Ã¥¯¥¹¡Ë¤¬¤¢¤¤¤Æ¤¤¤¿¤éµÍ¤á¤Æ¤¤¤¯
227                if( strlen( $_POST["question"][$i]["option"][$j] ) > 0 ) $temp_data[] = mb_convert_kana( trim ( $_POST["question"][$i]["option"][$j]  ), "asKVn" );
228
229            }
230
231             $_POST["question"][$i]["option"] = $temp_data;
232
233            if( ( strlen( $_POST["question"][$i] ["option"][0] ) == 0 ) || ( strlen( $_POST["question"][$i] ["option"][0] ) > 0
234             && strlen( $_POST["question"][$i] ["option"][1] ) == 0 ) ) $objErr->arrErr["question"][$i]['kind'] = "²¼µ­¤Î2¤Ä°Ê¾å¤Î¹àÌܤ˵­Æþ¤·¤Æ¤¯¤À¤µ¤¤¡£";
235        }
236    }
237
238    return lfGetArrInput( $objErr->arrErr );
239
240}
241
242
243function lfGetArrInput( $arr ){
244    // Ãͤ¬ÆþÎϤµ¤ì¤¿ÇÛÎó¤Î¤ß¤òÊÖ¤¹
245   
246    if ( is_array($arr) ){
247        foreach ( $arr as $key=>$val ) {
248            if ( is_string($val) && strlen($val) > 0 ){
249                $return[$key] = $val;
250            } elseif ( is_array( $val ) ) {
251                $data = lfGetArrInput ( $val );
252                if ( $data ){
253                    $return[$key] = $data;
254                }
255            }
256        }
257    }
258    return $return;
259}
260?>
Note: See TracBrowser for help on using the repository browser.