source: branches/feature-module-update/data/class/pages/order/LC_Page_Order.php @ 15079

Revision 15079, 1.3 KB checked in by nanasess, 17 years ago (diff)

svn:mime-type application/x-httpd-php; charset=UTF-8 設定

  • 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_Order extends LC_Page {
19
20    // {{{ properties
21
22    /**メインテンプレート */
23    var $tpl_mainpage;
24
25    /** CSS のパス */
26    var $tpl_css;
27
28    // }}}
29    // {{{ functions
30
31    /**
32     * Page を初期化する.
33     *
34     * @return void
35     */
36    function init() {
37        parent::init();
38    }
39
40    /**
41     * Page のプロセス.
42     *
43     * @return void
44     */
45    function process() {
46        $objView = new SC_SiteView();
47        $objQuery = new SC_Query();
48
49        // レイアウトデザインを取得
50        $layout = new SC_Helper_PageLayout_Ex();
51        $this = $layout->sfGetPageLayout($this, false, DEF_LAYOUT);
52
53        $arrRet = $objQuery->getall("SELECT * FROM dtb_baseinfo",array());
54        $this->arrRet = $arrRet[0];
55        $this->arrPref = $arrPref;
56
57        $objView->assignobj($this);
58        $objView->display(SITE_FRAME);
59    }
60
61    /**
62     * デストラクタ.
63     *
64     * @return void
65     */
66    function destroy() {
67        parent::destroy();
68    }
69}
70?>
Note: See TracBrowser for help on using the repository browser.