Source for file LC_Page_Error_SystemError.php

Documentation is available at LC_Page_Error_SystemError.php

  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.lockon.co.jp/
  8.  *
  9.  * This program is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU General Public License
  11.  * as published by the Free Software Foundation; either version 2
  12.  * of the License, or (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  22.  */
  23.  
  24. // {{{ requires
  25. require_once(CLASS_PATH "pages/error/LC_Page_Error.php");
  26.  
  27. /**
  28.  * エラー表示のページクラス
  29.  * SC_DbConnでエラーが発生した場合の表示ページ
  30.  *
  31.  * @package Page
  32.  * @author LOCKON CO.,LTD.
  33.  * @version $Id: LC_Page_Error_SystemError.php 17425 2008-07-14 11:59:41Z Seasoft $
  34.  */
  35.  
  36.     // }}}
  37.     // {{{ functions
  38.  
  39.     /**
  40.      * Page を初期化する.
  41.      *
  42.      * @return void 
  43.      */
  44.     function init({
  45.         parent::init();
  46.  
  47.         $this->tpl_title = 'システムエラー';
  48.         $this->adminPage $this->isAdminPage();
  49.  
  50.         if ($this->adminPage{
  51.             $this->tpl_mainpage = 'login_error.tpl';
  52.             $this->flame LOGIN_FRAME;
  53.         else {
  54.             $this->flame SITE_FRAME;
  55.         }
  56.     }
  57.  
  58.     /**
  59.      * Page のプロセス。
  60.      *
  61.      * @return void 
  62.      */
  63.     function process({
  64.         require_once CLASS_PATH 'SC_MobileUserAgent.php';
  65.  
  66.         $objView null;
  67.         if (SC_MobileUserAgent::isMobile(&& $this->adminPage == false{
  68.             $objView new SC_InstallView(MOBILE_TEMPLATE_DIRMOBILE_COMPILE_DIR);
  69.         elseif($this->adminPage{
  70.             $objView new SC_InstallView(TEMPLATE_ADMIN_DIRCOMPILE_ADMIN_DIR);
  71.         else {
  72.             $objView new SC_InstallView(TEMPLATE_DIRCOMPILE_DIR);
  73.         }
  74.  
  75.         $this->tpl_error "システムエラーが発生しました。<br />大変お手数ですが、サイト管理者までご連絡ください。";
  76.  
  77.         $objView->assignobj($this);
  78.         $objView->display($this->flame);
  79.     }
  80.  
  81.     /**
  82.      * デストラクタ.
  83.      *
  84.      * @return void 
  85.      */
  86.     function destroy({
  87.         parent::destroy();
  88.     }
  89.  
  90.     /**
  91.      * 管理機能かどうかを判定する.
  92.      *
  93.      * @return boolean 
  94.      */
  95.     function isAdminPage({
  96.         return preg_match('|/admin/|'$_SERVER['PHP_SELF']);
  97.     }
  98. }
  99. ?>

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