Current Path : /var/www/html/clients/rebirth.e-nk.ru/mmo/classes/hooks/ |
Current File : /var/www/html/clients/rebirth.e-nk.ru/mmo/classes/hooks/HookCopyright.class.php |
<?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 * --------------------------------------------------------- */ /** * Регистрация хука для вывода ссылки копирайта * */ class HookCopyright extends Hook { public function RegisterHook() { $this->AddHook('template_copyright','CopyrightLink',__CLASS__,-100); } public function CopyrightLink() { /** * Выводим везде, кроме страницы списка блогов и списка всех комментов */ if (!(Router::GetAction()=='blogs' or Router::GetAction()=='comments')) { return '© Powered by <a href="http://livestreetcms.ru">LiveStreet CMS</a>'; } return ''; } } ?>