Source for file LC_Page_Error_DispError.php

Documentation is available at LC_Page_Error_DispError.php

  1. <!-- -*- coding: utf-8 -*- -->
  2. <?php
  3. /*
  4.  * This file is part of EC-CUBE
  5.  *
  6.  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
  7.  *
  8.  * http://www.lockon.co.jp/
  9.  *
  10.  * This program is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU General Public License
  12.  * as published by the Free Software Foundation; either version 2
  13.  * of the License, or (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  23.  */
  24.  
  25. // {{{ requires
  26. require_once(CLASS_PATH "pages/error/LC_Page_Error.php");
  27.  
  28. /**
  29.  * エラー表示のページクラス
  30.  *
  31.  * @package Page
  32.  * @author LOCKON CO.,LTD.
  33.  * @version $Id: LC_Page_Error.php 15141 2007-07-27 10:59:11Z nanasess $
  34.  */
  35.  
  36.     // }}}
  37.     // {{{ functions
  38.  
  39.     /**
  40.      * Page を初期化する.
  41.      *
  42.      * @return void 
  43.      */
  44.     function init({
  45.         parent::init();
  46.         $this->tpl_mainpage = 'login_error.tpl';
  47.     }
  48.  
  49.     /**
  50.      * Page のプロセス。
  51.      *
  52.      * @return void 
  53.      */
  54.     function process({
  55.         $objView new SC_AdminView();
  56.  
  57.         switch ($this->type{
  58.             case LOGIN_ERROR:
  59.                 $this->tpl_error="IDまたはパスワードが正しくありません。<br />もう一度ご確認のうえ、再度入力してください。";
  60.                 break;
  61.             case ACCESS_ERROR:
  62.                 $this->tpl_error="ログイン認証の有効期限切れの可能性があります。<br />もう一度ご確認のうえ、再度ログインしてください。";
  63.                 break;
  64.             case AUTH_ERROR:
  65.                 $this->tpl_error="このファイルにはアクセス権限がありません。<br />もう一度ご確認のうえ、再度ログインしてください。";
  66.                 break;
  67.             case INVALID_MOVE_ERRORR:
  68.                 $this->tpl_error="不正なページ移動です。<br />もう一度ご確認のうえ、再度入力してください。";
  69.                 break;
  70.             default:
  71.                 $this->tpl_error="エラーが発生しました。<br />もう一度ご確認のうえ、再度ログインしてください。";
  72.                 break;
  73.         }
  74.  
  75.         $objView->assignobj($this);
  76.         $objView->display(LOGIN_FRAME);
  77.     }
  78.  
  79.     /**
  80.      * デストラクタ.
  81.      *
  82.      * @return void 
  83.      */
  84.     function destroy({
  85.         parent::destroy();
  86.     }
  87. }
  88. ?>

Documentation generated on Tue, 28 Apr 2009 18:12:10 +0900 by phpDocumentor 1.4.2