Changeset 17707


Ignore:
Timestamp:
2008/11/12 19:25:34 (15 years ago)
Author:
homan
Message:

モバイル側に「特定商取引に関する法律に基づく表記」を追加

Location:
branches/comu-ver2
Files:
4 added
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/pages/order/LC_Page_Order.php

    r17498 r17707  
    7373 
    7474    /** 
     75     * モバイルページを初期化する. 
     76     * 
     77     * @return void 
     78     */ 
     79    function mobileInit() { 
     80        $this->init(); 
     81    } 
     82 
     83    /** 
     84     * Page のプロセス(モバイル). 
     85     * 
     86     * 
     87     * @return void 
     88     */ 
     89    function mobileProcess() { 
     90        $objView = new SC_MobileView(); 
     91        $objDb = new SC_Helper_DB_Ex(); 
     92 
     93        $this->arrRet = $objDb->sf_getBasisData(); 
     94 
     95        $objView->assignobj($this); 
     96        $objView->display(SITE_FRAME); 
     97    } 
     98 
     99 
     100    /** 
    75101     * デストラクタ. 
    76102     * 
Note: See TracChangeset for help on using the changeset viewer.