source: branches/feature-module-update/data/class/pages/error/LC_Page_Error_DispError.php @ 15522

Revision 15522, 1012 bytes checked in by nanasess, 17 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<!-- -*- coding: utf-8 -*- -->
2<?php
3/*
4 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 */
8
9// {{{ requires
10require_once(CLASS_PATH . "pages/error/LC_Page_Error.php");
11
12/**
13 * エラー表示のページクラス
14 *
15 * @package Page
16 * @author LOCKON CO.,LTD.
17 * @version $Id: LC_Page_Error.php 15141 2007-07-27 10:59:11Z nanasess $
18 */
19class LC_Page_Error_DispError extends LC_Page_Error {
20
21    // }}}
22    // {{{ functions
23
24    /**
25     * Page を初期化する.
26     *
27     * @return void
28     */
29    function init() {
30        parent::init();
31        $this->tpl_mainpage = 'login_error.tpl';
32        $this->tpl_css = URL_DIR.'css/layout/error.css';
33        $this->tpl_title = 'エラー';
34    }
35
36    /**
37     * Page のプロセス。
38     *
39     * @return void
40     */
41    function process() {
42        parent::process();
43    }
44
45    /**
46     * デストラクタ.
47     *
48     * @return void
49     */
50    function destroy() {
51        parent::destroy();
52    }
53}
54?>
Note: See TracBrowser for help on using the repository browser.