Ignore:
Timestamp:
2007/08/10 18:43:31 (17 years ago)
Author:
nanasess
Message:

モバイルページの関数追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/LC_Page_Index.php

    r15080 r15282  
    4141 
    4242    /** 
     43     * モバイルページを初期化する. 
     44     * 
     45     * @return void 
     46     */ 
     47    function mobileInit() { 
     48        $this->tpl_mainpage = 'top.tpl'; 
     49    } 
     50 
     51    /** 
    4352     * Page のプロセス. 
    4453     * 
     
    5867 
    5968    /** 
     69     * Page のプロセス(モバイル). 
     70     * 
     71     * @return void 
     72     */ 
     73    function mobileProcess() { 
     74        $conn = new SC_DBConn(); 
     75        $objCustomer = new SC_Customer(); 
     76 
     77        $objView = new SC_MobileView(); 
     78        $objView->assign("isLogin", $objCustomer->isLoginSuccess()); 
     79        $objView->assignobj($this); 
     80        $objView->display(SITE_FRAME); 
     81    } 
     82 
     83    /** 
    6084     * デストラクタ. 
    6185     * 
Note: See TracChangeset for help on using the changeset viewer.