source: branches/feature-module-update/data/class/pages/admin/app/LC_Page_Admin_App_Log.php @ 15631

Revision 15631, 1.1 KB checked in by adachi, 17 years ago (diff)

ECCUBEアプリ用管理ページを新規作成, 仮コミット

  • 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
9require_once(CLASS_PATH . "pages/LC_Page.php");
10
11/**
12 * アプリケーション管理:インストールログ のページクラス.
13 *
14 * @package Page
15 * @author LOCKON CO.,LTD.
16 * @version $Id$
17 */
18class LC_Page_Admin_App_Log extends LC_Page {
19
20    // }}}
21    // {{{ functions
22
23    /**
24     * Page を初期化する.
25     *
26     * @return void
27     */
28    function init() {
29        parent::init();
30
31        $this->tpl_mainpage = 'app/log.tpl';
32        $this->tpl_subnavi  = 'app/subnavi.tpl';
33        $this->tpl_mainno   = 'app';
34        $this->tpl_subno    = 'log';
35        $this->tpl_subtitle = 'ログ管理';
36    }
37
38    /**
39     * Page のプロセス.
40     *
41     * @return void
42     */
43    function process() {
44        // ページ出力
45        $objView = new SC_AdminView();
46        $objView->assignObj($this);
47        $objView->display(MAIN_FRAME);
48    }
49
50    /**
51     * デストラクタ.
52     *
53     * @return void
54     */
55    function destroy() {
56        parent::destroy();
57    }
58}
59?>
Note: See TracBrowser for help on using the repository browser.