View file PF.Base/module/core/include/component/block/ftp.class.php

File size: 631B
<?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
{
	/**
	 * Controller
	 */
	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);
	}
}