Added placeholder Source/Worker plugins for ripping Bluray items. Added placeholder iterator filter to accept only Bluray sources while iterating directory contents.
9 lines
227 B
PHP
9 lines
227 B
PHP
<?php
|
|
|
|
class RippingCluster_Utility_DvdDirectoryIterator extends FilterIterator {
|
|
public function accept() {
|
|
return true; // TODO Determine if the current directory item represents a Bluray source or not
|
|
}
|
|
}
|
|
|
|
?>
|