Файл: upload/module/bulletin/include/component/controller/index.class.php
Строк: 38
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Module_Bulletin
* @version $Id: index.class.php 1599 2010-05-28 04:31:26Z Raymond_Benc $
*/
class Bulletin_Component_Controller_Index extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
$this->url()->send('blog', array(), null, 301);
}
/**
* Garbage collector. Is executed after this class has completed
* its job and the template has also been displayed.
*/
public function clean()
{
(($sPlugin = Phpfox_Plugin::get('bulletin.component_controller_index_clean')) ? eval($sPlugin) : false);
}
}
?>