source: branches/feature-module-update/data/class/pages/admin/app/LC_Page_Admin_App.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 * EC-CUBEアプリケーション管理 のページクラス.
13 *
14 * @package Page
15 * @author LOCKON CO.,LTD.
16 * @version $Id$
17 */
18class 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        $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.