source: branches/feature-module-update/data/class/page_extends/shopping/LC_Page_Shopping_Complete_Ex.php @ 15223

Revision 15223, 919 bytes checked in by nanasess, 17 years ago (diff)

LC_Page のクラス化対応
決済モジュールは, プラグインとして実装予定

  • Property svn:keywords set to Id Revision Date
  • Property svn:mime-type set to application/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/shopping/LC_Page_Shopping_Complete.php");
10
11/**
12 * ご注文完了 のページクラス(拡張).
13 *
14 * LC_Page_Shopping_Complete をカスタマイズする場合はこのクラスを編集する.
15 *
16 * @package Page
17 * @author LOCKON CO.,LTD.
18 * @version $Id$
19 */
20class LC_Page_Shopping_Complete_Ex extends LC_Page_Shopping_Complete {
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.