Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_OwnersStore_Settings extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_OwnersStore_Settings extends LC_Page_Admin_Ex  
     35{ 
    3536 
    3637    /** SC_FormParamのインスタンス */ 
     
    5152     * @return void 
    5253     */ 
    53     function init() { 
     54    function init() 
     55    { 
    5456        parent::init(); 
    5557 
     
    6769     * @return void 
    6870     */ 
    69     function process() { 
     71    function process() 
     72    { 
    7073        $this->action(); 
    7174        $this->sendResponse(); 
     
    7780     * @return void 
    7881     */ 
    79     function action() { 
     82    function action() 
     83    { 
    8084        switch ($this->getMode()) { 
    8185            // 入力内容をDBへ登録する 
     
    9498     * @return void 
    9599     */ 
    96     function destroy() { 
     100    function destroy() 
     101    { 
    97102        parent::destroy(); 
    98103    } 
     
    105110     * @return void 
    106111     */ 
    107     function execRegisterMode() { 
     112    function execRegisterMode() 
     113    { 
    108114        // パラメーターオブジェクトの初期化 
    109115        $this->initRegisterMode(); 
     
    134140     * @return void 
    135141     */ 
    136     function initRegisterMode() { 
     142    function initRegisterMode() 
     143    { 
    137144        // 前後の空白を削除 
    138145        if (isset($_POST['public_key'])) { 
     
    153160     * @return array エラー情報を格納した連想配列 
    154161     */ 
    155     function validateRegistermode() { 
     162    function validateRegistermode() 
     163    { 
    156164        return $this->objForm->checkError(); 
    157165    } 
     
    164172     * @return void 
    165173     */ 
    166     function execDefaultMode() { 
     174    function execDefaultMode() 
     175    { 
    167176        $this->arrForm = $this->getOwnersStoreSettings(); 
    168177    } 
     
    174183     * @return void 
    175184     */ 
    176     function registerOwnersStoreSettings($arrSettingsData) { 
     185    function registerOwnersStoreSettings($arrSettingsData) 
     186    { 
    177187        $table = 'dtb_ownersstore_settings'; 
    178188        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    192202     * @return array 
    193203     */ 
    194     function getOwnersStoreSettings() { 
     204    function getOwnersStoreSettings() 
     205    { 
    195206        $table   = 'dtb_ownersstore_settings'; 
    196207        $colmuns = '*'; 
Note: See TracChangeset for help on using the changeset viewer.