Ignore:
Timestamp:
2013/08/24 23:33:52 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/mypage/LC_Page_Mypage_History.php

    r23055 r23124  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    5959     * @return void 
    6060     */ 
    61     function process() 
     61    public function process() 
    6262    { 
    6363        parent::process(); 
     
    6969     * @return void 
    7070     */ 
    71     function action() 
     71    public function action() 
    7272    { 
    7373        //決済処理中ステータスのロールバック 
     
    7676        SC_Helper_Purchase_Ex::checkDbMyPendignOrder(); 
    7777        SC_Helper_Purchase_Ex::checkDbAllPendingOrder(); 
    78          
     78 
    7979        $objCustomer    = new SC_Customer_Ex(); 
    8080        $objPurchase = new SC_Helper_Purchase_Ex(); 
     
    117117                    $arrTempProductDetail['product_class_id'] 
    118118                    ); 
    119             if($this->tpl_arrOrderDetail[$product_index]['price_inctax'] != $arrTempProductDetail['price02_inctax']) { 
     119            if ($this->tpl_arrOrderDetail[$product_index]['price_inctax'] != $arrTempProductDetail['price02_inctax']) { 
    120120                $this->is_price_change = true; 
    121121            } 
     
    134134     * 受注メール送信履歴の取得 
    135135     * 
    136      * @param integer $order_id 注文番号 
    137      * @return array 受注メール送信履歴の内容 
    138      */ 
    139     function lfGetMailHistory($order_id) 
     136     * @param  integer $order_id 注文番号 
     137     * @return array   受注メール送信履歴の内容 
     138     */ 
     139    public function lfGetMailHistory($order_id) 
    140140    { 
    141141        $objQuery   =& SC_Query_Ex::getSingletonInstance(); 
     
    155155     * @return array お届け先情報 
    156156     */ 
    157     function lfGetShippingDate(&$objPurchase, $order_id, $arrWDAY) 
     157    public function lfGetShippingDate(&$objPurchase, $order_id, $arrWDAY) 
    158158    { 
    159159        $arrShipping = $objPurchase->getShippings($order_id); 
     
    178178     * @return array 画像をセットした購入履歴の配列 
    179179     */ 
    180     function setMainListImage($arrOrderDetails) 
     180    public function setMainListImage($arrOrderDetails) 
    181181    { 
    182182        $i = 0; 
     
    197197     * @return array MIMETYPE、ファイル名をセットした購入履歴の配列 
    198198     */ 
    199     function lfSetMimetype($arrOrderDetails) 
     199    public function lfSetMimetype($arrOrderDetails) 
    200200    { 
    201201        $objHelperMobile = new SC_Helper_Mobile_Ex(); 
     
    220220     * @param $arrOrderDetail 購入履歴の配列 
    221221     */ 
    222     function lfSetAU($arrOrderDetails) 
     222    public function lfSetAU($arrOrderDetails) 
    223223    { 
    224224        $this->isAU = false; 
Note: See TracChangeset for help on using the changeset viewer.