source: branches/rel/html/order/index.php @ 12157

Revision 12157, 960 bytes checked in by uehara, 17 years ago (diff)
Line 
1<?php
2/*
3 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7
8require_once("../require.php");
9
10class LC_Page {
11    function LC_Page() {
12        /** ɬ¤º»ØÄꤹ¤ë **/
13        $this->tpl_css = URL_DIR.'css/layout/order/index.css';      // ¥á¥¤¥óCSS¥Ñ¥¹
14        /** ɬ¤º»ØÄꤹ¤ë **/
15        $this->tpl_mainpage = 'order/index.tpl';            // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
16        $this->tpl_page_category = 'order';
17        $this->tpl_title = 'ÆÃÄ꾦¼è°úË¡¤Ë´Ø¤¹¤ëˡΧ';
18    }
19}
20
21$objPage = new LC_Page();
22$objView = new SC_SiteView();
23$objQuery = new SC_Query();
24
25// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
26$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
27
28$arrRet = $objQuery->getall("SELECT * FROM dtb_baseinfo",array());
29$objPage->arrRet = $arrRet[0];
30$objPage->arrPref = $arrPref;
31
32$objView->assignobj($objPage);
33$objView->display(SITE_FRAME);
34//-----------------------------------------------------------------------------------------------------------------------------------
35?>
Note: See TracBrowser for help on using the repository browser.