1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-01 05:55:02 +03:00
ifhub.club/classes/actions/ActionError.class.php

53 lines
1.4 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');
}
/**
* То что делаем при выполнении евента, т.е. ничего :) просто выводим шаблон
*
*/
protected function EventError() {
/**
* Если у первой ошибки заголовок 404 значит нажно в хидере послать браузеру HTTP/1.1 404 Not Found
*/
$aError=$this->Message_GetError();
if (isset($aError[0]) and $aError[0]['title']=='404') {
header("HTTP/1.1 404 Not Found");
}
$this->Viewer_AddHtmlTitle($this->Lang_Get('error'));
}
}
?>