Files
handbrake-cluster-webui/lib/RippingCluster/Source/IPlugin.class.php
Ben Roberts 4e59b22f3a Fixed bugs with task runner classes
Fixed strict errors in foreground and background task classes.
2010-08-30 21:01:28 +01:00

15 lines
377 B
PHP

<?php
interface RippingCluster_Source_IPlugin extends RippingCluster_IPlugin {
public static function enumerate();
public static function load($source_filename, $scan = true, $use_cache = true);
public static function loadEncoded($encoded_filename, $scan = true, $use_cache = true);
public static function isValidSource($source);
}
?>