Файл: upload/module/bulletin/include/component/controller/add.class.php
Строк: 34
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Module_Bulletin
* @version $Id: add.class.php 1508 2010-03-09 13:57:21Z Miguel_Espinoza $
*/
class Bulletin_Component_Controller_Add extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
$this->url()->send('blog.add', 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_add_clean')) ? eval($sPlugin) : false);
}
}
?>