Файл: upload/module/core/include/component/block/template-contentclass.class.php
Строк: 36
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond_Benc
* @package Phpfox_Component
* @version $Id: template-contentclass.class.php 2913 2011-08-29 08:14:28Z Raymond_Benc $
*/
class Core_Component_Block_Template_Contentclass 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('core.component_block_template_contentclass_clean')) ? eval($sPlugin) : false);
}
}
?>