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

Revision 5934, 753 bytes checked in by kakinaka, 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
2/*
3 * Copyright(c) 2000-2006 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7require_once("../require.php");
8
9class LC_Page {
10    function LC_Page() {
11        $this->tpl_mainpage = 'sales/index.tpl';
12        $this->tpl_mainno = 'sales';
13    }
14}
15
16$conn = new SC_DBConn();
17$objPage = new LC_Page();
18$objView = new SC_AdminView();
19$objSess = new SC_Session();
20
21// ǧ¾Ú²ÄÈݤÎȽÄê
22sfIsSuccess($objSess);
23
24// ¸¡º÷¥Ñ¥é¥á¡¼¥¿¤Î°ú¤­·Ñ¤®
25foreach ($_POST as $key => $val) {
26    if (ereg("^search_", $key)) {
27        $objPage->arrSearchHidden[$key] = $val;
28    }
29}
30
31$objView->assignobj($objPage);
32$objView->display(MAIN_FRAME);
33//-----------------------------------------------------------------------------------------------------------------------------------
34?>
Note: See TracBrowser for help on using the repository browser.