Ignore:
Timestamp:
2010/03/11 10:35:11 (14 years ago)
Author:
kajiwara
Message:

正式版にナイトリービルド版をマージしてみるテスト

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tmp/version-2_5-test/data/class/pages/order/LC_Page_Order.php

    r16741 r18609  
    2626 
    2727/** 
    28  * 特定商取引に関する法律 のページクラス. 
     28 * 特定商取引に関する法律に基づく表記 のページクラス. 
    2929 * 
    3030 * @package Page 
     
    4646        $this->tpl_mainpage = 'order/index.tpl'; 
    4747        $this->tpl_page_category = 'order'; 
    48         $this->tpl_title = '特定商取引に関する法律'; 
     48        $this->tpl_title = '特定商取引に関する法律に基づく表記'; 
    4949 
    5050        $masterData = new SC_DB_MasterData_Ex(); 
     
    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.