Ignore:
Timestamp:
2013/05/02 18:11:36 (13 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_MyPage extends LC_Page_AbstractMypage_Ex  
    35 { 
     34class LC_Page_MyPage extends LC_Page_AbstractMypage_Ex { 
    3635 
    3736    // {{{ properties 
     
    4847     * @return void 
    4948     */ 
    50     function init() 
    51     { 
     49    function init() { 
    5250        parent::init(); 
    5351        $this->tpl_mypageno = 'index'; 
     
    6866     * @return void 
    6967     */ 
    70     function process() 
    71     { 
     68    function process() { 
    7269        parent::process(); 
    7370    } 
     
    7875     * @return void 
    7976     */ 
    80     function action() 
    81     { 
     77    function action() { 
    8278 
    8379        $objCustomer = new SC_Customer_Ex(); 
     
    104100        } 
    105101        // 支払い方法の取得 
    106         $this->arrPayment = SC_Helper_Payment_Ex::getIDValueList(); 
     102        $this->arrPayment = SC_Helper_DB_Ex::sfGetIDValueList('dtb_payment', 'payment_id', 'payment_method'); 
    107103        // 1ページあたりの件数 
    108104        $this->dispNumber = SEARCH_PMAX; 
    109          
    110         $this->json_payment = SC_Utils::jsonEncode($this->arrPayment); 
    111         $this->json_customer_order_status = SC_Utils::jsonEncode($this->arrCustomerOrderStatus); 
    112105    } 
    113106 
     
    117110     * @return void 
    118111     */ 
    119     function destroy() 
    120     { 
     112    function destroy() { 
    121113        parent::destroy(); 
    122114    } 
     
    130122     * @return void 
    131123     */ 
    132     function lfGetOrderHistory($customer_id, $startno = -1) 
    133     { 
     124    function lfGetOrderHistory($customer_id, $startno = -1) { 
    134125        $objQuery   = SC_Query_Ex::getSingletonInstance(); 
    135126 
Note: See TracChangeset for help on using the changeset viewer.