source: branches/feature-module-update/data/class/pages/guide/LC_Page_Guide_Privacy.php @ 16162

Revision 16162, 1.4 KB checked in by nanasess, 17 years ago (diff)

モバイル対応

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id Revision Date
  • Property svn:mime-type set to text/x-httpd-php
Line 
1<?php
2/*
3 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7
8// {{{ requires
9require_once(CLASS_PATH . "pages/LC_Page.php");
10
11/**
12 * プライバシーポリシー のページクラス.
13 *
14 * @package Page
15 * @author LOCKON CO.,LTD.
16 * @version $Id$
17 */
18class LC_Page_Guide_Privacy extends LC_Page {
19
20    // }}}
21    // {{{ functions
22
23    /**
24     * Page を初期化する.
25     *
26     * @return void
27     */
28    function init() {
29        parent::init();
30    }
31
32    /**
33     * Page のプロセス.
34     *
35     * @return void
36     */
37    function process() {
38    }
39
40    /**
41     * モバイルページを初期化する.
42     *
43     * @return void
44     */
45    function mobileInit() {
46        $this->tpl_mainpage = 'guide/privacy.tpl';  // メインテンプレート
47        $this->tpl_title = 'プライバシーポリシー';
48    }
49
50    /**
51     * Page のプロセス(モバイル).
52     *
53     * @return void
54     */
55    function mobileProcess() {
56        // レイアウトデザインを取得
57        $objLayout = new SC_Helper_PageLayout_Ex();
58        $objLayout->sfGetPageLayout($this, false, DEF_LAYOUT);
59
60        $objView = new SC_MobileView();
61        $objView->assignobj($this);
62        $objView->display(SITE_FRAME);
63    }
64
65    /**
66     * デストラクタ.
67     *
68     * @return void
69     */
70    function destroy() {
71        parent::destroy();
72    }
73}
74?>
Note: See TracBrowser for help on using the repository browser.