Файл: upload/module/blog/include/component/controller/admincp/browse.class.php
Строк: 37
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Component
* @version $Id: browse.class.php 898 2009-08-25 14:06:00Z Raymond_Benc $
*/
class Blog_Component_Controller_Admincp_Browse extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
return Phpfox::getLib('module')->setController('blog.index');
}
/**
* 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('blog.component_controller_admincp_browse_clean')) ? eval($sPlugin) : false);
}
}
?>