Source for file LC_Page_Admin_Basis_Tradelaw.php

Documentation is available at LC_Page_Admin_Basis_Tradelaw.php

  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.lockon.co.jp/
  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.
  22.  */
  23.  
  24. // {{{ requires
  25. require_once(CLASS_PATH "pages/LC_Page.php");
  26.  
  27. /**
  28.  * 特定商取引法 のページクラス.
  29.  *
  30.  * @package Page
  31.  * @author LOCKON CO.,LTD.
  32.  * @version $Id: LC_Page_Admin_Basis_Tradelaw.php 16741 2007-11-08 00:43:24Z adachi $
  33.  */
  34.  
  35.     // {{{ properties
  36.  
  37.     /** フォームパラメータの配列 */
  38.     var $objFormParam;
  39.  
  40.     // }}}
  41.     // {{{ functions
  42.  
  43.     /**
  44.      * Page を初期化する.
  45.      *
  46.      * @return void 
  47.      */
  48.     function init({
  49.         parent::init();
  50.         $this->tpl_mainpage = 'basis/tradelaw.tpl';
  51.         $this->tpl_subnavi 'basis/subnavi.tpl';
  52.         $this->tpl_subno 'tradelaw';
  53.         $this->tpl_mainno = 'basis';
  54.         $masterData new SC_DB_MasterData_Ex();
  55.         $this->arrPref $masterData->getMasterData("mtb_pref"array("pref_id""pref_name""rank"));
  56.         $this->arrTAXRULE $masterData->getMasterData("mtb_taxrule");
  57.         $this->tpl_subtitle '特定商取引法';
  58.     }
  59.  
  60.     /**
  61.      * Page のプロセス.
  62.      *
  63.      * @return void 
  64.      */
  65.     function process({
  66.         $conn new SC_DBConn();
  67.         $objView new SC_AdminView();
  68.         $objSess new SC_Session();
  69.         $objQuery new SC_Query();
  70.  
  71.         // 認証可否の判定
  72.         SC_Utils_Ex::sfIsSuccess($objSess);
  73.  
  74.         // パラメータ管理クラス
  75.         $this->objFormParam = new SC_FormParam();
  76.         // パラメータ情報の初期化
  77.         $this->lfInitParam();
  78.         // POST値の取得
  79.         $this->objFormParam->setParam($_POST);
  80.  
  81.         $cnt $objQuery->count("dtb_baseinfo");
  82.  
  83.         if ($cnt 0{
  84.             $this->tpl_mode "update";
  85.         else {
  86.             $this->tpl_mode "insert";
  87.         }
  88.  
  89.         if(isset($_POST['mode']&& !empty($_POST['mode'])) {
  90.             // 入力値の変換
  91.             $this->objFormParam->convParam();
  92.             $this->arrErr $this->lfCheckError();
  93.  
  94.             if(count($this->arrErr== 0{
  95.                 switch($_POST['mode']{
  96.                 case 'update':
  97.                     $this->lfUpdateData()// 既存編集
  98.                     break;
  99.                 case 'insert':
  100.                     $this->lfInsertData()// 新規作成
  101.                     break;
  102.                 default:
  103.                     break;
  104.                 }
  105.                 // 再表示
  106.                 //sfReload();
  107.                 $this->tpl_onload = "window.alert('特定商取引法の登録が完了しました。');";
  108.             }
  109.         else {
  110.             $arrCol $this->objFormParam->getKeyList()// キー名一覧を取得
  111.             $col    SC_Utils_Ex::sfGetCommaList($arrCol);
  112.             $arrRet $objQuery->select($col"dtb_baseinfo");
  113.             // DB値の取得
  114.             $this->objFormParam->setParam($arrRet[0]);
  115.         }
  116.  
  117.         $this->arrForm $this->objFormParam->getFormParamList();
  118.         $objView->assignobj($this);
  119.         $objView->display(MAIN_FRAME);
  120.     }
  121.  
  122.     /**
  123.      * デストラクタ.
  124.      *
  125.      * @return void 
  126.      */
  127.     function destroy({
  128.         parent::destroy();
  129.     }
  130.  
  131.     /* パラメータ情報の初期化 */
  132.     function lfInitParam({
  133.         $this->objFormParam->addParam("販売業者""law_company"STEXT_LEN"KVa"array("EXIST_CHECK""MAX_LENGTH_CHECK"));
  134.         $this->objFormParam->addParam("運営責任者""law_manager"STEXT_LEN"KVa"array("EXIST_CHECK""MAX_LENGTH_CHECK"));
  135.         $this->objFormParam->addParam("郵便番号1""law_zip01"ZIP01_LEN"n"array("EXIST_CHECK""NUM_CHECK""NUM_COUNT_CHECK"));
  136.         $this->objFormParam->addParam("郵便番号2""law_zip02"ZIP02_LEN"n"array("EXIST_CHECK""NUM_CHECK""NUM_COUNT_CHECK"));
  137.         $this->objFormParam->addParam("都道府県""law_pref"INT_LEN"n"array("EXIST_CHECK""MAX_LENGTH_CHECK""NUM_CHECK"));
  138.         $this->objFormParam->addParam("住所1""law_addr01"STEXT_LEN"KVa"array("EXIST_CHECK""MAX_LENGTH_CHECK"));
  139.         $this->objFormParam->addParam("住所2""law_addr02"STEXT_LEN"KVa"array("EXIST_CHECK""MAX_LENGTH_CHECK"));
  140.         $this->objFormParam->addParam("電話番号1""law_tel01"TEL_ITEM_LEN"n"array("EXIST_CHECK""MAX_LENGTH_CHECK" ,"NUM_CHECK"));
  141.         $this->objFormParam->addParam("電話番号2""law_tel02"TEL_ITEM_LEN"n"array("EXIST_CHECK""MAX_LENGTH_CHECK" ,"NUM_CHECK"));
  142.         $this->objFormParam->addParam("電話番号3""law_tel03"TEL_ITEM_LEN"n"array("EXIST_CHECK""MAX_LENGTH_CHECK" ,"NUM_CHECK"));
  143.         $this->objFormParam->addParam("FAX番号1""law_fax01"TEL_ITEM_LEN"n"array("MAX_LENGTH_CHECK" ,"NUM_CHECK"));
  144.         $this->objFormParam->addParam("FAX番号2""law_fax02"TEL_ITEM_LEN"n"array("MAX_LENGTH_CHECK" ,"NUM_CHECK"));
  145.         $this->objFormParam->addParam("FAX番号3""law_fax03"TEL_ITEM_LEN"n"array("MAX_LENGTH_CHECK" ,"NUM_CHECK"));
  146.         $this->objFormParam->addParam("メールアドレス""law_email"STEXT_LEN"KVa"array("EXIST_CHECK""MAX_LENGTH_CHECK""EMAIL_CHECK""EMAIL_CHAR_CHECK"));
  147.         $this->objFormParam->addParam("URL""law_url"STEXT_LEN"KVa"array("EXIST_CHECK""MAX_LENGTH_CHECK""URL_CHECK"));
  148.         $this->objFormParam->addParam("必要料金""law_term01"MTEXT_LEN"KVa"array("EXIST_CHECK""MAX_LENGTH_CHECK"));
  149.         $this->objFormParam->addParam("注文方法""law_term02"MTEXT_LEN"KVa"array("EXIST_CHECK""MAX_LENGTH_CHECK"));
  150.         $this->objFormParam->addParam("支払方法""law_term03"MTEXT_LEN"KVa"array("EXIST_CHECK""MAX_LENGTH_CHECK"));
  151.         $this->objFormParam->addParam("支払期限""law_term04"MTEXT_LEN"KVa"array("EXIST_CHECK""MAX_LENGTH_CHECK"));
  152.         $this->objFormParam->addParam("引き渡し時期""law_term05"MTEXT_LEN"KVa"array("EXIST_CHECK""MAX_LENGTH_CHECK"));
  153.         $this->objFormParam->addParam("返品・交換について""law_term06"MTEXT_LEN"KVa"array("EXIST_CHECK""MAX_LENGTH_CHECK"));
  154.     }
  155.  
  156.     function lfUpdateData({
  157.         // 入力データを渡す。
  158.         $sqlval $this->objFormParam->getHashArray();
  159.         $sqlval['update_date''Now()';
  160.         $objQuery new SC_Query();
  161.         // UPDATEの実行
  162.         $ret $objQuery->update("dtb_baseinfo"$sqlval);
  163.     }
  164.  
  165.     function lfInsertData({
  166.         // 入力データを渡す。
  167.         $sqlval $this->objFormParam->getHashArray();
  168.         $sqlval['update_date''Now()';
  169.         $objQuery new SC_Query();
  170.         // INSERTの実行
  171.         $ret $objQuery->insert("dtb_baseinfo"$sqlval);
  172.     }
  173.  
  174.     /* 入力内容のチェック */
  175.     function lfCheckError({
  176.         // 入力データを渡す。
  177.         $arrRet =  $this->objFormParam->getHashArray();
  178.         $objErr new SC_CheckError($arrRet);
  179.         $objErr->arrErr $this->objFormParam->checkError();
  180.  
  181.         // 電話番号チェック
  182.         $objErr->doFunc(array("TEL""law_tel01""law_tel02""law_tel03"TEL_ITEM_LEN)array("TEL_CHECK"));
  183.         $objErr->doFunc(array("FAX""law_fax01""law_fax02""law_fax03"TEL_ITEM_LEN)array("TEL_CHECK"));
  184.         $objErr->doFunc(array("郵便番号""law_zip01""law_zip02")array("ALL_EXIST_CHECK"));
  185.  
  186.         return $objErr->arrErr;
  187.     }
  188. }
  189. ?>

Documentation generated on Tue, 28 Apr 2009 18:10:48 +0900 by phpDocumentor 1.4.2