Файл: upload/module/core/include/component/block/ftp.class.php
Строк: 30
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Component
* @version $Id: ftp.class.php 843 2009-08-06 05:39:58Z Raymond_Benc $
*/
class Core_Component_Block_Ftp 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_ftp_clean')) ? eval($sPlugin) : false);
}
}
?>