_manager; $files = array(); $roots = $man->getRootPaths(); foreach ($roots as $root) { $file = $man->getFile($root); // Configured root doesn't exists if (!$file->exists()) { error("Configured root: " . $root . " could not be found."); continue; } if ($filter->accept($file)) $files[] = $file; } return $files; } } ?>