* @package WB * @subpackage VFS */ WBClass::load('WBEvent_Handler'); /** * Event_Handler_VFS * * An empty event handler * * @version 0.1.0 * @package WB * @subpackage VFS */ class WBEvent_Handler_VFS extends WBEvent_Handler { /** * Handler Config * * Parameters: * @var array */ protected $config = array( ); /** * File * @var WBVFS_File */ protected $file; /** * File Mime * @var WBVFS_Mime */ protected $mime; /** * Constructor * */ public function __construct() { $this->file = WBClass::create('WBVFS_File'); } /** * Transcoder VFS File * * @see isRecoverable() * @param WBEvent $e * @return bool true to continue, false to stop processing * @throws Exception in case of error */ public function process(WBEvent $e) { return true; } }