Changeset 19157


Ignore:
Timestamp:
2010/11/06 23:15:54 (13 years ago)
Author:
Yammy
Message:

新process()対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_5-E/data/class/pages/order/LC_Page_Order.php

    r18701 r19157  
    5959     */ 
    6060    function process() { 
    61         $objView = new SC_SiteView(); 
     61        $this->action(); 
     62        $this->sendResponse(); 
     63    } 
     64 
     65    /** 
     66     * Page のアクション. 
     67     * 
     68     * @return void 
     69     */ 
     70    function action() { 
    6271        $objQuery = new SC_Query(); 
    6372        $layout = new SC_Helper_PageLayout_Ex(); 
     
    6776        $layout->sfGetPageLayout($this, false, DEF_LAYOUT); 
    6877        $this->arrRet = $objDb->sf_getBasisData(); 
    69  
    70         $objView->assignobj($this); 
    71         $objView->display(SITE_FRAME); 
    7278    } 
    7379 
     
    8894     */ 
    8995    function mobileProcess() { 
    90         $objView = new SC_MobileView(); 
     96        $this->mobileAction(); 
     97        $this->sendResponse(); 
     98    } 
     99 
     100    /** 
     101     * Page のアクション(モバイル). 
     102     * 
     103     * 
     104     * @return void 
     105     */ 
     106    function mobileAction() { 
    91107        $objDb = new SC_Helper_DB_Ex(); 
    92  
    93108        $this->arrRet = $objDb->sf_getBasisData(); 
    94  
    95         $objView->assignobj($this); 
    96         $objView->display(SITE_FRAME); 
    97109    } 
    98110 
Note: See TracChangeset for help on using the changeset viewer.