Imports all generic classes from the RippingCluster project, with any ripping-specific code stripped out. Tested against a dummy project for errors.
9 lines
192 B
PHP
9 lines
192 B
PHP
<?php
|
|
|
|
class Sihnon_Utility_ClassFilesIterator extends FilterIterator {
|
|
public function accept() {
|
|
return preg_match('/.class.php$/i', $this->current()->getFilename());
|
|
}
|
|
}
|
|
|
|
?>
|