Ignore:
Timestamp:
2013/06/08 16:35:27 (11 years ago)
Author:
Seasoft
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • 主に空白・空白行の調整。もう少し整えたいが、一旦現状コミット。
File:
1 edited

Legend:

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

    r22567 r22856  
    2222 */ 
    2323 
    24 // {{{ requires 
    2524require_once CLASS_EX_REALDIR . 'page_extends/mypage/LC_Page_AbstractMypage_Ex.php'; 
    2625 
     
    3231 * @version $Id$ 
    3332 */ 
    34 class LC_Page_Mypage_History extends LC_Page_AbstractMypage_Ex  
     33class LC_Page_Mypage_History extends LC_Page_AbstractMypage_Ex 
    3534{ 
    36  
    37     // }}} 
    38     // {{{ functions 
    39  
    4035    /** 
    4136     * Page を初期化する. 
     
    7469    function action() 
    7570    { 
    76  
    7771        $objCustomer    = new SC_Customer_Ex(); 
    7872        $objDb          = new SC_Helper_DB_Ex(); 
     
    10397        foreach ($this->tpl_arrOrderDetail as $product_index => $arrOrderProductDetail) { 
    10498            //必要なのは商品の販売金額のみなので、遅い場合は、別途SQL作成した方が良い 
    105             $arrTempProductDetail = $objProduct->getProductsClass($arrOrderProductDetail['product_class_id']);  
     99            $arrTempProductDetail = $objProduct->getProductsClass($arrOrderProductDetail['product_class_id']); 
    106100            if($this->tpl_arrOrderDetail[$product_index]['price'] != $arrTempProductDetail['price02']) { 
    107101                $this->is_price_change = true; 
     
    109103            $this->tpl_arrOrderDetail[$product_index]['product_price'] = ($arrTempProductDetail['price02'])?$arrTempProductDetail['price02']:0; 
    110104        } 
    111          
     105 
    112106        $this->tpl_arrOrderDetail = $this->setMainListImage($this->tpl_arrOrderDetail); 
    113107        $objPurchase->setDownloadableFlgTo($this->tpl_arrOrderDetail); 
     
    142136        $where      = 'order_id = ?'; 
    143137        $objQuery->setOrder('send_date DESC'); 
     138 
    144139        return $objQuery->select($col, 'dtb_mail_history', $where, array($order_id)); 
    145140    } 
     
    185180            $i++; 
    186181        } 
     182 
    187183        return $arrOrderDetails; 
    188184    } 
     
    205201            $i++; 
    206202        } 
     203 
    207204        return $arrOrderDetails; 
    208205    } 
Note: See TracChangeset for help on using the changeset viewer.