- Timestamp:
- 2007/09/28 16:46:13 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/html/mobile/guide/about.php
r15532 r16162 1 1 <?php 2 2 /** 3 * 3 * 4 4 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 5 5 * 6 6 * http://www.lockon.co.jp/ 7 * 7 * 8 * 8 9 * モバイルサイト/運営会社紹介 9 10 */ 10 11 11 require_once('../require.php'); 12 // {{{ requires 13 require_once("../require.php"); 14 require_once(CLASS_PATH . "page_extends/guide/LC_Page_Guide_About_Ex.php"); 12 15 13 class LC_Page { 14 function LC_Page() { 15 /** 必ず変更する **/ 16 $this->tpl_mainpage = 'guide/about.tpl'; // メインテンプレート 17 $this->tpl_title = 'プライバシーポリシー'; 18 } 19 } 16 // }}} 17 // {{{ generate page 20 18 21 $objPage = new LC_Page(); 22 23 // レイアウトデザインを取得 24 $objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT); 25 26 $objView = new SC_MobileView(); 27 $objView->assignobj($objPage); 28 $objView->display(SITE_FRAME); 29 30 //----------------------------------------------------------------------------------------------------------------------------------- 19 $objPage = new LC_Page_Guide_About_Ex(); 20 $objPage->mobileInit(); 21 $objPage->mobileProcess(); 22 register_shutdown_function(array($objPage, "destroy")); 31 23 ?>
Note: See TracChangeset
for help on using the changeset viewer.