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/basis/LC_Page_Admin_Basis_DeliveryInput.php

    r22566 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Basis_DeliveryInput extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Basis_DeliveryInput extends LC_Page_Admin_Ex  
     35{ 
    3536    // }}} 
    3637    // {{{ functions 
     
    4142     * @return void 
    4243     */ 
    43     function init() { 
     44    function init() 
     45    { 
    4446        parent::init(); 
    4547        $this->tpl_mainpage = 'basis/delivery_input.tpl'; 
     
    6062     * @return void 
    6163     */ 
    62     function process() { 
     64    function process() 
     65    { 
    6366        $this->action(); 
    6467        $this->sendResponse(); 
     
    7073     * @return void 
    7174     */ 
    72     function action() { 
     75    function action() 
     76    { 
    7377        $objFormParam = new SC_FormParam_Ex(); 
    7478        $this->lfInitParam($this->mode, $objFormParam); 
     
    105109     * @return void 
    106110     */ 
    107     function destroy() { 
     111    function destroy() 
     112    { 
    108113        parent::destroy(); 
    109114    } 
    110115 
    111116    /* パラメーター情報の初期化 */ 
    112     function lfInitParam($mode, &$objFormParam) { 
     117    function lfInitParam($mode, &$objFormParam) 
     118    { 
    113119        $objFormParam = new SC_FormParam_Ex(); 
    114120 
     
    148154     * @return $deliv_id 
    149155     */ 
    150     function lfRegistData($arrRet, $member_id) { 
     156    function lfRegistData($arrRet, $member_id) 
     157    { 
    151158        $objDelivery = new SC_Helper_Delivery_Ex(); 
    152159 
     
    197204 
    198205    /* 配送業者情報の取得 */ 
    199     function lfGetDelivData(&$objFormParam) { 
     206    function lfGetDelivData(&$objFormParam) 
     207    { 
    200208        $objDelivery = new SC_Helper_Delivery_Ex(); 
    201209 
     
    229237 
    230238    /* 入力内容のチェック */ 
    231     function lfCheckError(&$objFormParam) { 
     239    function lfCheckError(&$objFormParam) 
     240    { 
    232241        // 入力データを渡す。 
    233242        $arrRet =  $objFormParam->getHashArray(); 
Note: See TracChangeset for help on using the changeset viewer.