cakephp2-php8/cake/libs/error.php

207 lines
5.7 KiB
PHP
Raw Normal View History

Merging changes to trunk: Revision: [1761] Removing old db_acl.sql Revision: [1759] Removed unneeded calls to uses(). Changed basics.php listClasses() no longer using folder class. Starting corrections in DboPostgres class. Adding missing DboPostgres::query(). Added missing doc blocks to AjaxHelper. Fixed undefined keys in FormHelper::generateFields() Reformatted FormHelper::generateFields() adding open and close brackets where needed Revision: [1758] Fixed typo Revision: [1757] Fixed errors found when using PHP 4. Fixed a scaffold error Revision: [1756] Merging changes to model_php4.php Revision: [1755] Fixed scaffolding for the changes made to the model. Fixed Model::isForeignKey(), replaced array_key_exists with in_array, other function was failing Revision: [1754] Committing changes from bundt model to beta. DataSources will not be in the beta release Revision: [1751] Cleaning up a little more in the code. Removing loading of log.php unless it is really needed. Refactored dispatcher to speed up the stripslashes code if it is called Revision: [1748] removing all references to error_messages and deleting the file Revision: [1747] updated more error messages Revision: [1746] removing all error message defines Revision: [1745] added _() method from 1.0 to basics.php only used to return string right now Revision: [1744] Adding fix for ticket #220 Revision: [1743] More work on ErrorHandler class Revision: [1742] Renaming error view for missing database connection Revision: [1741] More work on ErrorHandler class Revision: [1740] More work on error class Revision: [1739] Replacing all $_SERVER variable check with env() in basics.php Revision: [1738] Adding env() to basic Revision: [1737] Updated session to use env() Revision: [1736] Removing ternary operators from Dispatcher Revision: [1735] Per nates request I am rolling back ACL to [1373] Revision: [1734] Removed the IP in the session class this was not very reliable. Added a time setting that generates current time adding the Security::inactiveMins() to the session Removed code that was added to basics.php to replace gethostbyaddr(). Added CAKE_SESSION_STRING define to core.php which is used in the by the Session class to generate a hashed key. Revision: [1733] Moving errors messages to ErrorHandler class. Updating errors view for use with new class. Updating Scaffold to use new class. Updated Dispatcher to use new class. Removing methods from Object class Revision: [1732] Adding ErrorHandler class Revision: [1731] Adding fix for Ticket #223 git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1762 3807eeeb-6ff5-0310-8944-8be069107fe0
2006-01-12 02:10:47 +00:00
<?php
/* SVN FILE: $Id$ */
/**
* Short description for file.
*
* Long description for file
*
* PHP versions 4 and 5
*
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
* Copyright (c) 2005, Cake Software Foundation, Inc.
* 1785 E. Sahara Avenue, Suite 490-204
* Las Vegas, Nevada 89104
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @filesource
* @copyright Copyright (c) 2005, Cake Software Foundation, Inc.
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
* @package cake
* @subpackage cake.cake.libs
* @since CakePHP v 0.10.5.1732
* @version $Revision$
* @modifiedby $LastChangedBy$
* @lastmodified $Date$
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
/**
* Short description for file.
*
* Long description for file
*
* @package cake
* @subpackage cake.cake.libs
* @since CakePHP v 0.10.5.1732
*/
class ErrorHandler extends Object
{
var $controller = null;
/**
* Class constructor.
*/
function __construct($method, $messages)
{
$this->controller =& new Controller();
if(DEBUG > 0)
{
call_user_func_array(array(&$this, $method), $messages);
}
else
{
call_user_func_array(array(&$this, 'error404'), $messages);
}
}
/**
* Displays an error page (e.g. 404 Not found).
*
* @param int $code Error code (e.g. 404)
* @param string $name Name of the error message (e.g. Not found)
* @param string $message
* @return unknown
*/
function error ($params)
{
extract($params);
$this->controller->webroot = $this->_webroot();
$this->controller->set(array('code'=>$code,
'name'=>$name,
'message'=>$message,
'title' => $code.' '. $name));
$this->controller->render('../errors/error404');
}
/**
* Convenience method to display a 404 page.
*
* @param string $url URL that spawned this message, to be included in the output.
* @param string $message Message text for the 404 page.
*/
function error404 ($params)
{
extract($params);
if(!isset($url))
{
$url = $action;
}
if(!isset($message))
{
$message = '';
}
header("HTTP/1.0 404 Not Found");
$this->error(array('code'=>'404',
'name'=>'Not found',
'message'=>sprintf(__("The requested address %s was not found on this server."), $url, $message)));
}
/**
* Renders the Missing Controller web page.
*
*/
function missingController($params)
{
extract($params);
$this->controller->webroot = $webroot;
$this->controller->set(array('controller' => $className,
'title' => 'Missing Controller'));
$this->controller->render('../errors/missingController');
}
/**
* Renders the Missing Action web page.
*
*/
function missingAction($params)
{
extract($params);
$this->controller->webroot = $webroot;
$this->controller->set(array('controller' => $className,
'action' => $action,
'title' => 'Missing Method in Controller'));
$this->controller->render('../errors/missingAction');
}
/**
* Renders the Private Action web page.
*
*/
function privateAction($params)
{
extract($params);
$this->controller->webroot = $webroot;
$this->controller->set(array('controller' => $className,
'action' => $action,
'title' => 'Trying to access private method in class'));
$this->controller->render('../errors/privateAction');
}
/**
* Renders the Missing Table web page.
*
*/
function missingTable($params)
{
extract($params);
$this->controller->webroot = $this->_webroot();
$this->controller->set(array('model' => $className,
'table' => $table,
'title' => 'Missing Database Table'));
$this->controller->render('../errors/missingTable');
exit();
}
/**
* Renders the Missing Database web page.
*
*/
function missingDatabase($params)
{
extract($params);
$this->controller->webroot = $webroot;
$this->controller->set(array('title' => 'Scaffold Missing Database Connection'));
$this->controller->render('../errors/missingScaffolddb');
}
/**
* Renders the Missing View web page.
*
*/
function missingView($params)
{
extract($params);
$this->controller->webroot = $webroot;
$this->controller->set(array('controller' => $className,
'action' => $action,
'title' => 'Missing View'));
$this->controller->render('../errors/missingView');
}
/**
* Renders the Missing Table web page.
*
*/
function missingConnection($params)
{
extract($params);
$this->controller->webroot = $this->_webroot();
$this->controller->set(array('model' => $className,
'title' => 'Missing Database Connection'));
$this->controller->render('../errors/missingConnection');
exit();
}
function _webroot()
{
$dispatcher =& new Dispatcher();
$dispatcher->baseUrl();
return $dispatcher->webroot;
}
}
?>