Source for file LC_Page_Admin_OwnersStore_Settings.php

Documentation is available at LC_Page_Admin_OwnersStore_Settings.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.  * EC-CUBEアプリケーション管理:アプリケーション設定 のページクラス.
  29.  *
  30.  * @package Page
  31.  * @author LOCKON CO.,LTD.
  32.  * @version $Id: LC_Page_Admin_OwnersStore_Settings.php 17423 2008-07-11 16:48:04Z Seasoft $
  33.  */
  34.  
  35.     /** SC_FormParamのインスタンス */
  36.     var $objForm;
  37.  
  38.     /** リクエストパラメータを格納する連想配列 */
  39.     var $arrForm;
  40.  
  41.     /** バリデーションエラー情報を格納する連想配列 */
  42.     var $arrErr;
  43.  
  44.     // }}}
  45.     // {{{ functions
  46.  
  47.     /**
  48.      * Page を初期化する.
  49.      *
  50.      * @return void 
  51.      */
  52.     function init({
  53.         parent::init();
  54.  
  55.         $this->tpl_mainpage = 'ownersstore/settings.tpl';
  56.         $this->tpl_mainno   = 'ownersstore';
  57.         $this->tpl_subno    'settings';
  58.         $this->tpl_subtitle '認証キー設定';
  59.     }
  60.  
  61.     /**
  62.      * Page のプロセス.
  63.      *
  64.      * @return void 
  65.      */
  66.     function process({
  67.  
  68.         // ログインチェック
  69.         SC_Utils::sfIsSuccess(new SC_Session());
  70.  
  71.         // トランザクションIDの取得
  72.         $this->transactionid = $this->getToken();
  73.  
  74.         // $_POST['mode']によってアクション振り分け
  75.         switch($this->getMode()) {
  76.         // 入力内容をDBへ登録する
  77.         case 'register':
  78.             $this->execRegisterMode();
  79.             break;
  80.         // 初回表示
  81.         default:
  82.             $this->execDefaultMode();
  83.         }
  84.  
  85.         // ページ出力
  86.         $objView new SC_AdminView();
  87.         $objView->assignObj($this);
  88.         $objView->display(MAIN_FRAME);
  89.     }
  90.  
  91.     /**
  92.      * デストラクタ.
  93.      *
  94.      * @return void 
  95.      */
  96.     function destroy({
  97.         parent::destroy();
  98.     }
  99.  
  100.     /**
  101.      * switchアクション振り分け用パラメータを取得する.
  102.      *
  103.      * @param void 
  104.      * @return string モード名
  105.      */
  106.     function getMode({
  107.         $mode '';
  108.         if ($_SERVER['REQUEST_METHOD'== 'GET'{
  109.             if (isset($_GET['mode'])) $mode $_GET['mode'];
  110.         elseif ($_SERVER['REQUEST_METHOD'== 'POST'{
  111.             if (isset($_POST['mode'])) $mode $_POST['mode'];
  112.         }
  113.         return $mode;
  114.     }
  115.  
  116.     /**
  117.      * registerアクションの実行.
  118.      * 入力内容をDBへ登録する.
  119.      *
  120.      * @param void 
  121.      * @return void 
  122.      */
  123.     function execRegisterMode({
  124.         if ($this->isValidToken(!== true{
  125.             SC_Utils_Ex::sfDispError('');
  126.         }
  127.         // パラメータオブジェクトの初期化
  128.         $this->initRegisterMode();
  129.         // POSTされたパラメータの検証
  130.         $arrErr $this->validateRegistermode();
  131.  
  132.         // エラー時の処理
  133.         if (!empty($arrErr)) {
  134.             $this->arrErr  = $arrErr;
  135.             $this->arrForm = $this->objForm->getHashArray();
  136.             $this->transactionid = $this->getToken();
  137.             return;
  138.         }
  139.  
  140.         // エラーがなければDBへ登録
  141.         $arrForm $this->objForm->getHashArray();
  142.         $this->registerOwnersStoreSettings($arrForm);
  143.  
  144.         $this->arrForm = $arrForm;
  145.  
  146.         $this->tpl_onload = "alert('登録しました。')";
  147.         $this->transactionid = $this->getToken();
  148.     }
  149.  
  150.     /**
  151.      * registerアクションの初期化.
  152.      * SC_FormParamを初期化しメンバ変数にセットする.
  153.      *
  154.      * @param void 
  155.      * @return void 
  156.      */
  157.     function initRegisterMode({
  158.         // 前後の空白を削除
  159.         if (isset($_POST['public_key'])) {
  160.             $_POST['public_key'trim($_POST['public_key']);
  161.         }
  162.  
  163.         $objForm new SC_FormParam();
  164.         $objForm->addParam('認証キー''public_key'LTEXT_LEN''array('EXIST_CHECK''ALNUM_CHECK''MAX_LENGTH_CHECK'));
  165.         $objForm->setParam($_POST);
  166.  
  167.         $this->objForm = $objForm;
  168.     }
  169.  
  170.     /**
  171.      * registerアクションのパラメータを検証する.
  172.      *
  173.      * @param void 
  174.      * @return array エラー情報を格納した連想配列
  175.      */
  176.     function validateRegistermode({
  177.         return $this->objForm->checkError();
  178.     }
  179.  
  180.     /**
  181.      * defaultアクションの実行.
  182.      * DBから登録内容を取得し表示する.
  183.      *
  184.      * @param void 
  185.      * @return void 
  186.      */
  187.     function execDefaultMode({
  188.         $this->arrForm = $this->getOwnersStoreSettings();
  189.     }
  190.  
  191.     /**
  192.      * DBへ入力内容を登録する.
  193.      *
  194.      * @param array $arrSettingsData オーナーズストア設定の連想配列
  195.      * @return void 
  196.      */
  197.     function registerOwnersStoreSettings($arrSettingsData{
  198.         $table 'dtb_ownersstore_settings';
  199.         $objQuery new SC_Query();
  200.         $count $objQuery->count($table);
  201.  
  202.         if ($count{
  203.             $objQuery->update($table$arrSettingsData);
  204.         else {
  205.             $objQuery->insert($table$arrSettingsData);
  206.         }
  207.     }
  208.  
  209.     /**
  210.      * DBから登録内容を取得する.
  211.      *
  212.      * @param void 
  213.      * @return array 
  214.      */
  215.     function getOwnersStoreSettings(){
  216.         $table   'dtb_ownersstore_settings';
  217.         $colmuns '*';
  218.  
  219.         $objQuery new SC_Query();
  220.         $arrRet $objQuery->select($colmuns$table);
  221.  
  222.         if (isset($arrRet[0])) return $arrRet[0];
  223.  
  224.         return array();
  225.     }
  226. }
  227. ?>

Documentation generated on Tue, 28 Apr 2009 18:11:30 +0900 by phpDocumentor 1.4.2