Файл: upload/module/custom/include/component/block/panel.class.php
Строк: 33
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Component
* @version $Id: panel.class.php 477 2009-05-03 10:37:09Z Raymond_Benc $
*/
class Custom_Component_Block_Panel extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
}
/**
* 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('custom.component_block_panel_clean')) ? eval($sPlugin) : false);
}
}
?>