<?php
/**
* Entier Studio
*
* LICENSE
*
* Copyright 2006 Entier Studio team.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @package entier.framework
* @copyright Copyright (c) 2006 Entier Studio team. All rights reserved.
* @version $Id: view.ExceptionView.php 81 2008-01-17 23:08:21Z yannromefort $
*/
//-----------------------------------------------------------------------------
// namespace
if (!defined("DefExceptionView")) {
//-------------------------------------------------------------------------
// Define
define("DefExceptionView", "1");
//-------------------------------------------------------------------------
// Include
@require_once (FRAMEWORK_DIR . VIEWHELPER);
//-------------------------------------------------------------------------
// Class
class ExceptionView extends ViewObject {
//---------------------------------------------------------------------
// Constructor
/*
*
*/
function ExceptionView($errorSet) {
//
$tPFactory = TPFACTORY;
$this->m_Template = new $tPFactory(TEMPLATES_DIR);
//
$this->m_errorSet = $errorSet;
}
//---------------------------------------------------------------------
// Methods
/*
*
* @access public
*
* @param string layout name is a template file name or a layer name in a template file
* @param string block name in layout
* @param integer view type { FORMVIEW, ITEMVIEW, LISTVIEW, TREEVIEW... }
* @param integer outputmode
*
*/
function renderView($layout, $block, $view = NULL, $mode = OUTPUT) {
//
if (!is_object($this->Template())) return (false);
//
if (isset($layout) && ($this->m_Template->define($layout) == false)) return (false);
//
switch ($view) {
case FAILVIEW:
/*
* handle form inserting errors
*/
//
if (DEBUG_MODE == 0) {
$this->m_blockSet["VIEWERRMSG"] = "the request can't be proceeded";
//
$this->m_Template->assign($this->m_blockSet);
} else {
print_r($this->m_errorSet);
exit();
}
//
break;
}
//
$this->m_Template->output($mode);
//
return (true);
}
};
// Class
//-------------------------------------------------------------------------
}
// namespace
//-----------------------------------------------------------------------------
?>