source: branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis_Tradelaw.php @ 22234

Revision 22234, 7.7 KB checked in by h_yoshimoto, 11 years ago (diff)

#1998 特定商取引法から都道府県のセレクトボックスを削除

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
RevLine 
[15292]1<?php
2/*
[16582]3 * This file is part of EC-CUBE
4 *
[21867]5 * Copyright(c) 2000-2012 LOCKON CO.,LTD. All Rights Reserved.
[15292]6 *
7 * http://www.lockon.co.jp/
[16582]8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
[15292]22 */
23
24// {{{ requires
[20534]25require_once CLASS_EX_REALDIR . 'page_extends/admin/LC_Page_Admin_Ex.php';
[15292]26
27/**
28 * 特定商取引法 のページクラス.
29 *
30 * @package Page
31 * @author LOCKON CO.,LTD.
32 * @version $Id$
33 */
[20345]34class LC_Page_Admin_Basis_Tradelaw extends LC_Page_Admin_Ex {
[15292]35
36    // }}}
37    // {{{ functions
38
39    /**
40     * Page を初期化する.
41     *
42     * @return void
43     */
44    function init() {
45        parent::init();
46        $this->tpl_mainpage = 'basis/tradelaw.tpl';
47        $this->tpl_subno = 'tradelaw';
48        $this->tpl_mainno = 'basis';
49        $masterData = new SC_DB_MasterData_Ex();
[19773]50        $this->arrPref = $masterData->getMasterData('mtb_pref');
[21481]51        $this->arrTAXRULE = $masterData->getMasterData('mtb_taxrule');
[22100]52        $this->tpl_maintitle = t('TPL_MAINTITLE_006');
53        $this->tpl_subtitle = t('LC_Page_Admin_Basis_Tradelaw_002');
[15292]54    }
55
56    /**
57     * Page のプロセス.
58     *
59     * @return void
60     */
61    function process() {
[19661]62        $this->action();
63        $this->sendResponse();
64    }
65
66    /**
67     * Page のアクション.
68     *
69     * @return void
70     */
71    function action() {
[21592]72
[20171]73        $objDb = new SC_Helper_DB_Ex();
74
[20501]75        $objFormParam = new SC_FormParam_Ex();
[20339]76        $this->lfInitParam($objFormParam);
77        $objFormParam->setParam($_POST);
[15292]78
[21376]79        if ($objDb->sfGetBasisExists()) {
[20538]80            $this->tpl_mode = 'update';
[15292]81        } else {
[20538]82            $this->tpl_mode = 'insert';
[15292]83        }
[20166]84
[21441]85        if (!empty($_POST)) {
[15292]86            // 入力値の変換
[20339]87            $objFormParam->convParam();
88            $this->arrErr = $this->lfCheckError($objFormParam);
[15292]89
[21441]90            if (count($this->arrErr) == 0) {
91                switch ($this->getMode()) {
[21526]92                    case 'update':
93                        $this->lfUpdateData($objFormParam->getHashArray()); // 既存編集
94                        break;
95                    case 'insert':
96                        $this->lfInsertData($objFormParam->getHashArray()); // 新規作成
97                        break;
98                    default:
99                        break;
[15292]100                }
101                // 再表示
[22100]102                $this->tpl_onload = "window.alert('" . t('ALERT_008') . "');";
[15292]103            }
104        } else {
[20339]105            $arrCol = $objFormParam->getKeyList(); // キー名一覧を取得
[20166]106            $col    = SC_Utils_Ex::sfGetCommaList($arrCol);
[20171]107            $arrRet = $objDb->sfGetBasisData(true, $col);
[20339]108            $objFormParam->setParam($arrRet);
[15292]109        }
[20339]110        $this->arrForm = $objFormParam->getFormParamList();
[21591]111
[15292]112    }
113
114    /**
115     * デストラクタ.
116     *
117     * @return void
118     */
119    function destroy() {
120        parent::destroy();
121    }
122
[20970]123    /* パラメーター情報の初期化 */
[20339]124    function lfInitParam(&$objFormParam) {
[22100]125        $objFormParam->addParam(t('PARAM_LABEL_SELLER'), 'law_company', STEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
126        $objFormParam->addParam(t('PARAM_LABEL_MANAGER'), 'law_manager', STEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
[22205]127//        $objFormParam->addParam(t('PARAM_LABEL_ZIP01'), 'law_zip01', ZIP01_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'NUM_COUNT_CHECK'));
128//        $objFormParam->addParam(t('PARAM_LABEL_ZIP02'), 'law_zip02', ZIP02_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'NUM_COUNT_CHECK'));
129        $objFormParam->addParam(t('PARAM_LABEL_ZIP'), 'law_zipcode', ZIPCODE_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
[22234]130        $objFormParam->addParam(t('PARAM_LABEL_PREF'), 'law_pref', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'));
[22100]131        $objFormParam->addParam(t('PARAM_LABEL_ADDR01'), 'law_addr01', MTEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
[22156]132        $objFormParam->addParam(t('PARAM_LABEL_ADDR02'), 'law_addr02', MTEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
[22100]133        $objFormParam->addParam(t('PARAM_LABEL_TEL1'), 'law_tel01', TEL_ITEM_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK' ,'NUM_CHECK'));
134        $objFormParam->addParam(t('PARAM_LABEL_TEL2'), 'law_tel02', TEL_ITEM_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK' ,'NUM_CHECK'));
135        $objFormParam->addParam(t('PARAM_LABEL_TEL3'), 'law_tel03', TEL_ITEM_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK' ,'NUM_CHECK'));
136        $objFormParam->addParam(t('PARAM_LABEL_FAX1'), 'law_fax01', TEL_ITEM_LEN, 'n', array('MAX_LENGTH_CHECK' ,'NUM_CHECK'));
137        $objFormParam->addParam(t('PARAM_LABEL_FAX2'), 'law_fax02', TEL_ITEM_LEN, 'n', array('MAX_LENGTH_CHECK' ,'NUM_CHECK'));
138        $objFormParam->addParam(t('PARAM_LABEL_FAX3'), 'law_fax03', TEL_ITEM_LEN, 'n', array('MAX_LENGTH_CHECK' ,'NUM_CHECK'));
139        $objFormParam->addParam(t('PARAM_LABEL_EMAIL'), 'law_email', null, 'KVa', array('EXIST_CHECK', 'EMAIL_CHECK', 'EMAIL_CHAR_CHECK'));
140        $objFormParam->addParam(t('PARAM_LABEL_URL'), 'law_url', STEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'URL_CHECK'));
141        $objFormParam->addParam(t('PARAM_LABEL_REQUIRED_FEE'), 'law_term01', MTEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
142        $objFormParam->addParam(t('PARAM_LABEL_TO_ORDER'), 'law_term02', MTEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
143        $objFormParam->addParam(t('PARAM_LABEL_PAYMENT_METHOD'), 'law_term03', MTEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
144        $objFormParam->addParam(t('PARAM_LABEL_PAYMENT_LIMIT'), 'law_term04', MTEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
145        $objFormParam->addParam(t('PARAM_LABEL_DELIVERY_TIME'), 'law_term05', MTEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
146        $objFormParam->addParam(t('PARAM_LABEL_ABOUT_RETURNED_PRODUCTS'), 'law_term06', MTEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
[15292]147    }
148
[20339]149    function lfUpdateData($sqlval) {
[21185]150        $sqlval['update_date'] = 'CURRENT_TIMESTAMP';
[20507]151        $objQuery =& SC_Query_Ex::getSingletonInstance();
[15292]152        // UPDATEの実行
[21481]153        $ret = $objQuery->update('dtb_baseinfo', $sqlval);
[15292]154    }
155
[20339]156    function lfInsertData($sqlval) {
[21185]157        $sqlval['update_date'] = 'CURRENT_TIMESTAMP';
[20507]158        $objQuery =& SC_Query_Ex::getSingletonInstance();
[15292]159        // INSERTの実行
[21481]160        $ret = $objQuery->insert('dtb_baseinfo', $sqlval);
[15292]161    }
162
163    /* 入力内容のチェック */
[20339]164    function lfCheckError(&$objFormParam) {
[15292]165        // 入力データを渡す。
[20339]166        $arrRet =  $objFormParam->getHashArray();
[20503]167        $objErr = new SC_CheckError_Ex($arrRet);
[20339]168        $objErr->arrErr = $objFormParam->checkError();
[15292]169
170        // 電話番号チェック
[22100]171        $objErr->doFunc(array(t('PARAM_LABEL_TEL'), 'law_tel01', 'law_tel02', 'law_tel03'), array('TEL_CHECK'));
172        $objErr->doFunc(array(t('PARAM_LABEL_FAX'), 'law_fax01', 'law_fax02', 'law_fax03'), array('TEL_CHECK'));
[22205]173//        $objErr->doFunc(array(t('PARAM_LABEL_ZIP'), 'law_zip01', 'law_zip02'), array('ALL_EXIST_CHECK'));
[15292]174
175        return $objErr->arrErr;
176    }
177}
Note: See TracBrowser for help on using the repository browser.