Imports all generic classes from the RippingCluster project, with any ripping-specific code stripped out. Tested against a dummy project for errors.
9 lines
206 B
PHP
9 lines
206 B
PHP
<?php
|
|
|
|
class Sihnon_Utility_VisibleFilesRecursiveIterator extends RecursiveFilterIterator {
|
|
public function accept() {
|
|
return !(substr($this->current()->getFilename(), 0, 1) == '.');
|
|
}
|
|
}
|
|
|
|
?>
|