Файл: upload/module/pages/include/component/block/menu.class.php
Строк: 35
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond_Benc
* @package Phpfox_Component
* @version $Id: menu.class.php 3952 2012-02-28 14:15:08Z Raymond_Benc $
*/
class Pages_Component_Block_Menu extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
if (defined("PHPFOX_IN_DESIGN_MODE"))
{
return 'block';
}
}
/**
* 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('pages.component_block_menu_clean')) ? eval($sPlugin) : false);
}
}
?>