source: branches/feature-module-update/templates/page_class.php @ 15575

Revision 15575, 762 bytes checked in by nanasess, 17 years ago (diff)

クラステンプレート追加

  • Property svn:keywords set to "Id Revision Date"
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 * XXX のページクラス.
13 *
14 * @package Page
15 * @author LOCKON CO.,LTD.
16 * @version $Id$
17 */
18class LC_Page_XXX 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 destroy() {
46        parent::destroy();
47    }
48}
49/*
50 * Local variables:
51 * coding: utf-8
52 * End:
53 */
54?>
Note: See TracBrowser for help on using the repository browser.