This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
phptsmadmin/application/classes/HTTP/Exception/404.php

32 lines
865 B
PHP
Raw Normal View History

2011-05-23 10:01:27 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class overrides Kohana's 404 Exception
*
* @package lnApp/Modifications
* @category Classes
* @category Helpers
* @author Deon George
* @copyright (c) 2010 Deon George
* @license http://dev.leenooks.net/license.html
*/
class HTTP_Exception_404 extends Kohana_HTTP_Exception_404 {
2012-11-26 05:57:18 +00:00
public function __construct($message = NULL, array $variables = NULL, Exception $previous = NULL)
2011-05-23 10:01:27 +00:00
{
set_exception_handler(array(get_class($this),'handler'));
2012-11-26 05:57:18 +00:00
parent::__construct($message, $variables, $previous);
2011-05-23 10:01:27 +00:00
}
public static function handler(Exception $e)
{
SystemMessage::add(array(
2012-11-26 05:57:18 +00:00
'title'=>_('Page not found'),
2011-05-23 10:01:27 +00:00
'type'=>'error',
'body'=>sprintf(_('The page [%s] you requested was not found?'),Request::detect_uri()),
));
2012-11-26 05:57:18 +00:00
HTTP::redirect('welcome');
2011-05-23 10:01:27 +00:00
}
}
2012-11-26 05:57:18 +00:00
?>