source: branches/feature-module-update/html/mobile/guide/usage.php @ 15080

Revision 15080, 922 bytes checked in by nanasess, 17 years ago (diff)

svn properties 設定

  • svn:mime-type - application/x-httpd-php; charset=UTF-8
  • svn:keywords - Id
  • Property svn:keywords set to Id
  • Property svn:mime-type set to application/x-httpd-php; charset=UTF-8
Line 
1<?php
2/**
3 *
4 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 *
9 * モバイルサイト/ご利用方法
10 */
11
12require_once('../require.php');
13
14class LC_Page {
15    function LC_Page() {
16        /** 必ず変更する **/
17        $this->tpl_mainpage = 'guide/usage.tpl';    // メインテンプレート
18        $this->tpl_title = 'ご利用方法';
19    }
20}
21
22$objPage = new LC_Page();
23
24switch (@$_GET['page']) {
25case '1':
26case '2':
27case '3':
28case '4':
29    $objPage->tpl_mainpage = 'guide/usage' . $_GET['page'] . '.tpl';
30    break;
31}
32
33// レイアウトデザインを取得
34$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
35
36$objView = new SC_MobileView();
37$objView->assignobj($objPage);
38$objView->display(SITE_FRAME);
39
40//-----------------------------------------------------------------------------------------------------------------------------------
41?>
Note: See TracBrowser for help on using the repository browser.