source: branches/feature-module-update/data/class/page_extends/admin/order/LC_Page_Admin_Order_Status_Ex.php @ 15596

Revision 15596, 932 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/admin/order/LC_Page_Admin_Order_Status.php");
10
11/**
12 * ステータス管理 のページクラス(拡張).
13 *
14 * LC_Page_Admin_Order_Status をカスタマイズする場合はこのクラスを編集する.
15 *
16 * @package Page
17 * @author LOCKON CO.,LTD.
18 * @version $Id$
19 */
20class LC_Page_Admin_Order_Status_Ex extends LC_Page_Admin_Order_Status {
21
22    // }}}
23    // {{{ functions
24
25    /**
26     * Page を初期化する.
27     *
28     * @return void
29     */
30    function init() {
31        parent::init();
32    }
33
34    /**
35     * Page のプロセス.
36     *
37     * @return void
38     */
39    function process() {
40        parent::process();
41    }
42
43    /**
44     * デストラクタ.
45     *
46     * @return void
47     */
48    function destroy() {
49        parent::destroy();
50    }
51}
52?>
Note: See TracBrowser for help on using the repository browser.