1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-18 08:48:20 +03:00
ifhub.club/application/classes/actions/ActionDonate.class.php
Alexander Yakovlev 565ff70c0b Слияние с upstream (LiveStreet/github)
Слил насколько возможно, папка install удалена.
2017-01-11 14:57:03 +07:00

44 lines
864 B
PHP

<?php
/**
* Статическая страница доната
*
* @package application.actions
* @since 1.0
*/
class ActionDonate extends Action
{
/**
* Инициализация экшена
*
*/
public function Init()
{
/**
* Устанавливаем дефолтный евент
*/
$this->SetDefaultEvent('index');
}
/**
* Регистрируем евенты
*
*/
protected function RegisterEvent()
{
$this->AddEvent('index', 'EventIndex');
}
/**
* Вывод правил
*
*/
protected function EventIndex()
{
/**
* Устанавливаем title страницы
*/
$this->Viewer_AddHtmlTitle('Поддержать IFHub');
$this->SetTemplateAction('index');
}
}