mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
1748ac0318
Revision: [1891] Added patch from Ticket #278 Revision: [1890] Adding patch from Ticket #227 Revision: [1889] Adding fix from Changeset [1631]. This fixes Ticket #319 Revision: [1888] Added fix for Ticket #315 Revision: [1887] Adding patch from Ticket #312 Revision: [1886] Adding fix that was committed in [1304] back. Closing Ticket #77 again Revision: [1885] Fix added for Ticket #306 Added patch from Ticket #318 Added patch from Ticket #322 Revision: [1884] Adding fix to Ticket #332 Revision: [1883] Adding patch from Ticket #330 Revision: [1882] Adding fix for Ticket #170 back to HtmlHelper::selectTag(). Was lost in a previous merge Revision: [1881] Adding fix for Ticket #336 Revision: [1880] Adding fix from Ticket #307 Revision: [1879] Plugins will use their own helpers and components if present Revision: [1878] Basic implementation of plugins within app/plugins working. Revision: [1877] Starting plugin code for multiple apps within one app. Revision: [1876] Added Ticket #345. Revision: [1875] Added check to AcoAction class that would not attempt to load AppModel Class if it is already defined in memory Added fixes for Ticket #317, Ticket #333, Ticket #343, Ticket #337 Revision: [1874] Adding fix for Ticket #340 Revision: [1873] Added themeWeb var to helpers that will be used if a theme class overrides the view class Revision: [1872] Adding $format to timeAgo and relativeTime, for gwoo Revision: [1871] Docstrings changes. One char at a time we map out Cake. Revision: [1870] Docstrings for Session, and corrections to tabbing on datasource. Revision: [1869] Docstrings for the core database classes. Revision: [1868] Adding patch for Ticket #131 Revision: [1867] Allowing ajax link titles to not be escaped Revision: [1866] Changed error class so calls to ErrorHandler::error() in production setting will work. git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1892 3807eeeb-6ff5-0310-8944-8be069107fe0
309 lines
No EOL
8.7 KiB
PHP
309 lines
No EOL
8.7 KiB
PHP
<?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) 2006, 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) 2006, 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)
|
|
{
|
|
if(!class_exists('AppController'))
|
|
{
|
|
loadController(null);
|
|
}
|
|
$this->controller =& new AppController();
|
|
if(DEBUG > 0 || $method == 'error')
|
|
{
|
|
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 = $this->_webroot();
|
|
$this->controller->set(array('controller' => $className,
|
|
'action' => $action,
|
|
'file' => $file,
|
|
'title' => 'Missing View'));
|
|
$this->controller->render('../errors/missingView');
|
|
}
|
|
|
|
/**
|
|
* Renders the Missing Layout web page.
|
|
*
|
|
*/
|
|
function missingLayout($params)
|
|
{
|
|
extract($params);
|
|
$this->controller->webroot = $this->_webroot();
|
|
$this->controller->layout = 'default';
|
|
$this->controller->set(array('file' => $file,
|
|
'title' => 'Missing Layout'));
|
|
$this->controller->render('../errors/missingLayout');
|
|
}
|
|
|
|
/**
|
|
* 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();
|
|
}
|
|
|
|
|
|
/**
|
|
* Renders the Missing Helper file web page.
|
|
*
|
|
*/
|
|
function missingHelperFile($params)
|
|
{
|
|
extract($params);
|
|
$this->controller->webroot = $this->_webroot();
|
|
$this->controller->set(array('helperClass' => Inflector::camelize($helper) . "Helper",
|
|
'file' => $file,
|
|
'title' => 'Missing Helper File'));
|
|
$this->controller->render('../errors/missingHelperFile');
|
|
exit();
|
|
}
|
|
|
|
/**
|
|
* Renders the Missing Helper class web page.
|
|
*
|
|
*/
|
|
function missingHelperClass($params)
|
|
{
|
|
extract($params);
|
|
$this->controller->webroot = $this->_webroot();
|
|
$this->controller->set(array('helperClass' => Inflector::camelize($helper) . "Helper",
|
|
'file' => $file,
|
|
'title' => 'Missing Helper Class'));
|
|
$this->controller->render('../errors/missingHelperClass');
|
|
exit();
|
|
}
|
|
|
|
/**
|
|
* Renders the Missing Component file web page.
|
|
*
|
|
*/
|
|
function missingComponentFile($params)
|
|
{
|
|
extract($params);
|
|
$this->controller->webroot = $this->_webroot();
|
|
$this->controller->set(array('controller' => $className,
|
|
'component' => $component,
|
|
'file' => $file,
|
|
'title' => 'Missing Component File'));
|
|
$this->controller->render('../errors/missingComponentFile');
|
|
exit();
|
|
}
|
|
|
|
/**
|
|
* Renders the Missing Component class web page.
|
|
*
|
|
*/
|
|
function missingComponentClass($params)
|
|
{
|
|
extract($params);
|
|
$this->controller->webroot = $this->_webroot();
|
|
$this->controller->set(array('controller' => $className,
|
|
'component' => $component,
|
|
'file' => $file,
|
|
'title' => 'Missing Component Class'));
|
|
$this->controller->render('../errors/missingComponentClass');
|
|
exit();
|
|
}
|
|
|
|
/**
|
|
* Renders the Missing Model class web page.
|
|
*
|
|
*/
|
|
function missingModel($params)
|
|
{
|
|
extract($params);
|
|
$this->controller->webroot = $this->_webroot();
|
|
$this->controller->set(array('model' => $className,
|
|
'title' => 'Missing Model'));
|
|
$this->controller->render('../errors/missingModel');
|
|
exit();
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Enter description here...
|
|
*
|
|
* @return unknown
|
|
*/
|
|
function _webroot()
|
|
{
|
|
$dispatcher =& new Dispatcher();
|
|
$dispatcher->baseUrl();
|
|
return $dispatcher->webroot;
|
|
}
|
|
}
|
|
?>
|