1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-30 21:45:01 +03:00
ifhub.club/classes/actions/ActionError.class.php
Mzhelskiy Maxim a441e28b1d Issue #59
2012-04-01 13:17:52 +04:00

56 lines
1.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/*-------------------------------------------------------
*
* LiveStreet Engine Social Networking
* Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
* Official site: www.livestreet.ru
* Contact e-mail: rus.engine@gmail.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/
/**
* Класс обработки УРЛа вида /error/ т.е. ошибок
*
*/
class ActionError extends Action {
/**
* Инициализация экшена
*
*/
public function Init() {
$this->SetDefaultEvent('index');
Router::SetIsShowStats(false);
}
/**
* Регистрируем евент
*
*/
protected function RegisterEvent() {
$this->AddEvent('index','EventError');
$this->AddEvent('404','EventError');
}
/**
* То что делаем при выполнении евента, т.е. ничего :) просто выводим шаблон
*
*/
protected function EventError() {
/**
* Если эвент равен 404, то значит нужно в хидере послать браузеру HTTP/1.1 404 Not Found
*/
if ($this->sCurrentEvent=='404') {
$this->Message_AddErrorSingle($this->Lang_Get('system_error_404'),'404');
$sProtocol=isset($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.1';
header("{$sProtocol} 404 Not Found");
}
$this->Viewer_AddHtmlTitle($this->Lang_Get('error'));
$this->SetTemplateAction('index');
}
}
?>