source: temp/trunk/html/order/index.php @ 1328

Revision 1328, 851 bytes checked in by naka, 20 years ago (diff)

* empty log message *

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1<?php
2require_once("../require.php");
3
4class LC_Page {
5    function LC_Page() {
6        /** ɬ¤º»ØÄꤹ¤ë **/
7        $this->tpl_css = '/css/layout/order/index.css';     // ¥á¥¤¥óCSS¥Ñ¥¹
8        /** ɬ¤º»ØÄꤹ¤ë **/
9        $this->tpl_mainpage = 'order/index.tpl';            // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
10        $this->tpl_page_category = 'order';
11        $this->tpl_title = 'ÆÃÄ꾦¼è°úË¡¤Ë´Ø¤¹¤ëˡΧ';
12    }
13}
14
15$objPage = new LC_Page();
16$objView = new SC_SiteView();
17$objQuery = new SC_Query();
18
19// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
20$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
21
22$arrRet = $objQuery->getall("SELECT * FROM dtb_baseinfo",array());
23$objPage->arrRet = $arrRet[0];
24$objPage->arrPref = $arrPref;
25
26$objView->assignobj($objPage);
27$objView->display(SITE_FRAME);
28//-----------------------------------------------------------------------------------------------------------------------------------
29?>
Note: See TracBrowser for help on using the repository browser.