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_Order.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Mypage_Order extends LC_Page_AbstractMypage_Ex { 
     34class LC_Page_Mypage_Order extends LC_Page_AbstractMypage_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648    } 
     
    5153     * @return void 
    5254     */ 
    53     function process() { 
     55    function process() 
     56    { 
    5457        parent::process(); 
    5558    } 
     
    6063     * @return void 
    6164     */ 
    62     function action() { 
     65    function action() 
     66    { 
    6367 
    6468        //受注詳細データの取得 
     
    8185     * @return void 
    8286     */ 
    83     function destroy() { 
     87    function destroy() 
     88    { 
    8489        parent::destroy(); 
    8590    } 
    8691 
    8792    // 受注詳細データの取得 
    88     function lfGetOrderDetail($order_id) { 
     93    function lfGetOrderDetail($order_id) 
     94    { 
    8995        $objQuery       = SC_Query_Ex::getSingletonInstance(); 
    9096 
     
    104110 
    105111    // 商品をカートに追加 
    106     function lfAddCartProducts($arrOrderDetail) { 
     112    function lfAddCartProducts($arrOrderDetail) 
     113    { 
    107114 
    108115        $objCartSess = new SC_CartSession_Ex(); 
Note: See TracChangeset for help on using the changeset viewer.