Basic framework for application including two sample plugins: TV and RouterboardFirmware.
16 lines
264 B
PHP
16 lines
264 B
PHP
<?php
|
|
|
|
interface DownloadDispatcher_Source_IPlugin extends DownloadDispatcher_IPlugin {
|
|
|
|
/**
|
|
* Process files recognised by this plugin
|
|
*
|
|
*
|
|
*/
|
|
public function run();
|
|
|
|
public static function create($config, $log);
|
|
|
|
}
|
|
|
|
?>
|