Ignore:
Timestamp:
2011/01/02 17:15:06 (13 years ago)
Author:
fukuda
Message:

#880(mobile/sphoneディレクトリを削除)に対応。まずmobileのみ意図通りの動作になるように一部コミット(guideディレクトリ)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/guide/LC_Page_Guide_Usage.php

    r19805 r19811  
    5252     */ 
    5353    function process() { 
     54        parent::process(); 
     55        $this->action(); 
     56        $this->sendResponse(); 
    5457    } 
    55  
     58     
    5659    /** 
    57      * モバイルページを初期化する. 
     60     * Page のアクション. 
    5861     * 
    5962     * @return void 
    6063     */ 
    61     function mobileInit() { 
    62         $this->tpl_mainpage = 'guide/usage.tpl';    // メインテンプレート 
    63         $this->tpl_title = 'ご利用方法'; 
    64     } 
    65  
    66     /** 
    67      * Page のプロセス(モバイル). 
    68      * 
    69      * @return void 
    70      */ 
    71     function mobileProcess() { 
    72  
    73         switch (@$_GET['page']) { 
    74         case '1': 
    75         case '2': 
    76         case '3': 
    77         case '4': 
    78             $this->tpl_mainpage = 'guide/usage' . $_GET['page'] . '.tpl'; 
    79             break; 
    80         } 
    81  
    82         $objView = new SC_MobileView(); 
    83         $objView->assignobj($this); 
    84         $objView->display(SITE_FRAME); 
    85     } 
     64    function action() {} 
    8665 
    8766    /** 
Note: See TracChangeset for help on using the changeset viewer.