Changeset 16149


Ignore:
Timestamp:
2007/09/28 13:18:17 (17 years ago)
Author:
nanasess
Message:

モバイル対応

Location:
branches/feature-module-update
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/html/mobile/unsupported/index.php

    r15532 r16149  
    11<?php 
    2 /** 
    3  *  
     2/* 
    43 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
    54 * 
    65 * http://www.lockon.co.jp/ 
    7  *  
    86 */ 
     7 
     8// {{{ requires 
    99require_once("../require.php"); 
     10require_once(CLASS_PATH . "page_extends/unsupported/LC_Page_Unsupported_Ex.php"); 
    1011 
    11 class LC_Page { 
    12     function LC_Page() { 
    13         /** 必ず指定する **/ 
    14         $this->tpl_css = '';            // メインCSSパス 
    15         /** 必ず指定する **/ 
    16         // メインテンプレート 
    17         $this->tpl_mainpage = 'unsupported/index.tpl'; 
    18     } 
    19 } 
     12// }}} 
     13// {{{ generate page 
    2014 
    21 $objPage = new LC_Page(); 
    22 $objView = new SC_MobileView(); 
    23  
    24 // レイアウトデザインを取得 
    25 $objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT); 
    26  
    27 $objView->assignobj($objPage); 
    28 $objView->display(SITE_FRAME); 
    29  
    30 //----------------------------------------------------------------------------------------------------------------------------------- 
     15$objPage = new LC_Page_Unsupported_Ex(); 
     16$objPage->init(); 
     17$objPage->process(); 
     18register_shutdown_function(array($objPage, "destroy")); 
    3119?> 
Note: See TracChangeset for help on using the changeset viewer.