Revision 16404,
1.2 KB
checked in by adachi, 15 years ago
(diff) |
文言の修正
|
-
Property svn:eol-style set to
LF
-
Property svn:keywords set to
Id
-
Property svn:mime-type set to
text/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 |
---|
9 | require_once(CLASS_PATH . "pages/LC_Page.php"); |
---|
10 | |
---|
11 | /** |
---|
12 | * EC-CUBEアプリケーション管理 のページクラス. |
---|
13 | * |
---|
14 | * @package Page |
---|
15 | * @author LOCKON CO.,LTD. |
---|
16 | * @version $Id$ |
---|
17 | */ |
---|
18 | class LC_Page_Admin_App extends LC_Page { |
---|
19 | |
---|
20 | var $tpl_subno = 'index'; |
---|
21 | // }}} |
---|
22 | // {{{ functions |
---|
23 | |
---|
24 | /** |
---|
25 | * Page を初期化する. |
---|
26 | * |
---|
27 | * @return void |
---|
28 | */ |
---|
29 | function init() { |
---|
30 | parent::init(); |
---|
31 | |
---|
32 | $this->tpl_mainpage = 'app/index.tpl'; |
---|
33 | $this->tpl_subnavi = 'app/subnavi.tpl'; |
---|
34 | $this->tpl_mainno = 'app'; |
---|
35 | $this->tpl_subno = 'index'; |
---|
36 | $this->tpl_subtitle = '購入商品一覧'; |
---|
37 | } |
---|
38 | |
---|
39 | /** |
---|
40 | * Page のプロセス. |
---|
41 | * |
---|
42 | * @return void |
---|
43 | */ |
---|
44 | function process() { |
---|
45 | |
---|
46 | // ログインチェック |
---|
47 | SC_Utils::sfIsSuccess(new SC_Session()); |
---|
48 | |
---|
49 | $objView = new SC_AdminView(); |
---|
50 | $objView->assignObj($this); |
---|
51 | $objView->display(MAIN_FRAME); |
---|
52 | } |
---|
53 | |
---|
54 | /** |
---|
55 | * デストラクタ. |
---|
56 | * |
---|
57 | * @return void |
---|
58 | */ |
---|
59 | function destroy() { |
---|
60 | parent::destroy(); |
---|
61 | } |
---|
62 | } |
---|
63 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.