source: branches/feature-module-update/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Log.php @ 16419

Revision 16419, 1.2 KB checked in by adachi, 17 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
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_OwnersStore_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 = 'ownersstore/log.tpl';
32        $this->tpl_subnavi  = 'ownersstore/subnavi.tpl';
33        $this->tpl_mainno   = 'ownersstore';
34        $this->tpl_subno    = 'log';
35        $this->tpl_subtitle = 'ログ管理';
36    }
37
38    /**
39     * Page のプロセス.
40     *
41     * @return void
42     */
43    function process() {
44
45        // ログインチェック
46        SC_Utils::sfIsSuccess(new SC_Session());
47
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.