source: branches/feature-module-update/data/class/pages/abouts/LC_Page_Abouts.php @ 15080

Revision 15080, 1.2 KB 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 * 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_Abouts extends LC_Page {
19
20    // {{{ properties
21
22    /**メインテンプレート */
23    var $tpl_mainpage = 'abouts/index.tpl';
24
25    /** カテゴリ */
26    var $tpl_page_category = 'abouts';
27
28    /** タイトル */
29    var $tpl_title = '当サイトについて';
30
31    // }}}
32    // {{{ functions
33
34    /**
35     * Page を初期化する.
36     *
37     * @return void
38     */
39    function init() {
40        parent::init();
41    }
42
43    /**
44     * Page のプロセス.
45     *
46     * @return void
47     */
48    function process() {
49
50        $objView = new SC_SiteView();
51
52        // レイアウトデザインを取得
53        $layout = new SC_Helper_PageLayout_Ex();
54        $this = $layout->sfGetPageLayout($this, false, DEF_LAYOUT);
55
56        $objView->assignobj($this);
57        $objView->display(SITE_FRAME);
58    }
59
60    /**
61     * デストラクタ.
62     *
63     * @return void
64     */
65    function destroy() {
66        parent::destroy();
67    }
68}
69?>
Note: See TracBrowser for help on using the repository browser.