| Revision 15079,
784 bytes
checked in by nanasess, 19 years ago
(diff) |
|
svn:mime-type application/x-httpd-php; charset=UTF-8 設定
|
-
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 | require_once('../require.php');
|
|---|
| 12 |
|
|---|
| 13 | class LC_Page {
|
|---|
| 14 | function LC_Page() {
|
|---|
| 15 | /** 必ず変更する **/
|
|---|
| 16 | $this->tpl_mainpage = 'guide/about.tpl'; // メインテンプレート
|
|---|
| 17 | $this->tpl_title = 'プライバシーポリシー';
|
|---|
| 18 | }
|
|---|
| 19 | }
|
|---|
| 20 |
|
|---|
| 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 | //-----------------------------------------------------------------------------------------------------------------------------------
|
|---|
| 31 | ?>
|
|---|
Note: See
TracBrowser
for help on using the repository browser.