Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Settings.php

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_OwnersStore_Settings extends LC_Page_Admin_Ex  
    35 { 
     34class LC_Page_Admin_OwnersStore_Settings extends LC_Page_Admin_Ex { 
    3635 
    3736    /** SC_FormParamのインスタンス */ 
     
    5251     * @return void 
    5352     */ 
    54     function init() 
    55     { 
     53    function init() { 
    5654        parent::init(); 
    5755 
     
    6967     * @return void 
    7068     */ 
    71     function process() 
    72     { 
     69    function process() { 
    7370        $this->action(); 
    7471        $this->sendResponse(); 
     
    8077     * @return void 
    8178     */ 
    82     function action() 
    83     { 
     79    function action() { 
    8480        switch ($this->getMode()) { 
    8581            // 入力内容をDBへ登録する 
     
    9894     * @return void 
    9995     */ 
    100     function destroy() 
    101     { 
     96    function destroy() { 
    10297        parent::destroy(); 
    10398    } 
     
    110105     * @return void 
    111106     */ 
    112     function execRegisterMode() 
    113     { 
     107    function execRegisterMode() { 
    114108        // パラメーターオブジェクトの初期化 
    115109        $this->initRegisterMode(); 
     
    140134     * @return void 
    141135     */ 
    142     function initRegisterMode() 
    143     { 
     136    function initRegisterMode() { 
    144137        // 前後の空白を削除 
    145138        if (isset($_POST['public_key'])) { 
     
    160153     * @return array エラー情報を格納した連想配列 
    161154     */ 
    162     function validateRegistermode() 
    163     { 
     155    function validateRegistermode() { 
    164156        return $this->objForm->checkError(); 
    165157    } 
     
    172164     * @return void 
    173165     */ 
    174     function execDefaultMode() 
    175     { 
     166    function execDefaultMode() { 
    176167        $this->arrForm = $this->getOwnersStoreSettings(); 
    177168    } 
     
    183174     * @return void 
    184175     */ 
    185     function registerOwnersStoreSettings($arrSettingsData) 
    186     { 
     176    function registerOwnersStoreSettings($arrSettingsData) { 
    187177        $table = 'dtb_ownersstore_settings'; 
    188178        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    202192     * @return array 
    203193     */ 
    204     function getOwnersStoreSettings() 
    205     { 
     194    function getOwnersStoreSettings() { 
    206195        $table   = 'dtb_ownersstore_settings'; 
    207196        $colmuns = '*'; 
Note: See TracChangeset for help on using the changeset viewer.