Файл: upload/module/comment/include/component/block/display.class.php
Строк: 31
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Module_Comment
* @version $Id: display.class.php 4074 2012-03-28 14:02:40Z Raymond_Benc $
*/
class Comment_Component_Block_Display 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('comment.component_block_display_clean')) ? eval($sPlugin) : false);
}
}
?>