source: branches/feature-module-update/data/class/page_extends/admin/basis/LC_Page_Admin_Basis_Tradelaw_Ex.php @ 15532

Revision 15532, 936 bytes checked in by nanasess, 17 years ago (diff)

svn:mime-type 修正

  • Property svn:keywords set to Id Revision Date
  • Property svn:mime-type set to text/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// {{{ requires
8require_once(CLASS_PATH . "pages/admin/basis/LC_Page_Admin_Basis_Tradelaw.php");
9
10/**
11 * 特定商取引法 のページクラス(拡張).
12 *
13 * LC_Page_Admin_Basis_Tradelaw をカスタマイズする場合はこのクラスを編集する.
14 *
15 * @package Page
16 * @author LOCKON CO.,LTD.
17 * @version $Id$
18 */
19class LC_Page_Admin_Basis_Tradelaw_Ex extends LC_Page_Admin_Basis_Tradelaw {
20
21    // }}}
22    // {{{ functions
23
24    /**
25     * Page を初期化する.
26     *
27     * @return void
28     */
29    function init() {
30        parent::init();
31    }
32
33    /**
34     * Page のプロセス.
35     *
36     * @return void
37     */
38    function process() {
39        parent::process();
40    }
41
42    /**
43     * デストラクタ.
44     *
45     * @return void
46     */
47    function destroy() {
48        parent::destroy();
49    }
50}
51?>
Note: See TracBrowser for help on using the repository browser.