| Revision 15532,
888 bytes
checked in by nanasess, 19 years ago
(diff) |
|
svn:mime-type 修正
|
-
Property svn:keywords set to
Id Revision Date
-
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 | * 管理者ログイン のページクラス. |
|---|
| 13 | * |
|---|
| 14 | * @package Page |
|---|
| 15 | * @author LOCKON CO.,LTD. |
|---|
| 16 | * @version $Id$ |
|---|
| 17 | */ |
|---|
| 18 | class LC_Page_Admin extends LC_Page { |
|---|
| 19 | |
|---|
| 20 | // }}} |
|---|
| 21 | // {{{ functions |
|---|
| 22 | |
|---|
| 23 | /** |
|---|
| 24 | * Page を初期化する. |
|---|
| 25 | * |
|---|
| 26 | * @return void |
|---|
| 27 | */ |
|---|
| 28 | function init() { |
|---|
| 29 | parent::init(); |
|---|
| 30 | $this->tpl_mainpage = 'login.tpl'; |
|---|
| 31 | } |
|---|
| 32 | |
|---|
| 33 | /** |
|---|
| 34 | * Page のプロセス. |
|---|
| 35 | * |
|---|
| 36 | * @return void |
|---|
| 37 | */ |
|---|
| 38 | function process() { |
|---|
| 39 | $objView = new SC_AdminView(); |
|---|
| 40 | $objView->assignobj($this); |
|---|
| 41 | $objView->display(LOGIN_FRAME); |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | /** |
|---|
| 45 | * デストラクタ. |
|---|
| 46 | * |
|---|
| 47 | * @return void |
|---|
| 48 | */ |
|---|
| 49 | function destroy() { |
|---|
| 50 | parent::destroy(); |
|---|
| 51 | } |
|---|
| 52 | } |
|---|
| 53 | ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.