source: temp/trunk/html/admin/sales/index.php @ 1328

Revision 1328, 652 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        $this->tpl_mainpage = 'sales/index.tpl';
7        $this->tpl_mainno = 'sales';
8    }
9}
10
11$conn = new SC_DBConn();
12$objPage = new LC_Page();
13$objView = new SC_AdminView();
14$objSess = new SC_Session();
15
16// ǧ¾Ú²ÄÈݤÎȽÄê
17sfIsSuccess($objSess);
18
19// ¸¡º÷¥Ñ¥é¥á¡¼¥¿¤Î°ú¤­·Ñ¤®
20foreach ($_POST as $key => $val) {
21    if (ereg("^search_", $key)) {
22        $objPage->arrSearchHidden[$key] = $val;
23    }
24}
25
26$objView->assignobj($objPage);
27$objView->display(MAIN_FRAME);
28//-----------------------------------------------------------------------------------------------------------------------------------
29?>
Note: See TracBrowser for help on using the repository browser.