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/mypage/LC_Page_Mypage_DeliveryAddr.php

    r22546 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Mypage_DeliveryAddr extends LC_Page_Ex { 
     34class LC_Page_Mypage_DeliveryAddr extends LC_Page_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->tpl_title    = 'お届け先の追加・変更'; 
     
    5860     * @return void 
    5961     */ 
    60     function process() { 
     62    function process() 
     63    { 
    6164        parent::process(); 
    6265        $this->action(); 
     
    6972     * @return void 
    7073     */ 
    71     function action() { 
     74    function action() 
     75    { 
    7276 
    7377        $objCustomer = new SC_Customer_Ex(); 
     
    162166     * @return void 
    163167     */ 
    164     function destroy() { 
     168    function destroy() 
     169    { 
    165170        parent::destroy(); 
    166171    } 
    167172 
    168173    /* 登録実行 */ 
    169     function lfRegistData($objAddress, $objFormParam, $customer_id) { 
     174    function lfRegistData($objAddress, $objFormParam, $customer_id) 
     175    { 
    170176        $arrRet     = $objFormParam->getHashArray(); 
    171177        $sqlval     = $objFormParam->getDbArray(); 
     
    177183    } 
    178184 
    179     function lfRegistDataNonMember($objFormParam) { 
     185    function lfRegistDataNonMember($objFormParam) 
     186    { 
    180187        $arrRegistColumn = $objFormParam->getDbArray(); 
    181188        foreach ($arrRegistColumn as $key => $val) { 
Note: See TracChangeset for help on using the changeset viewer.