File filters

svn path=/trunk/boinc/; revision=13092
This commit is contained in:
Janus B. Kristensen 2007-07-03 23:14:16 +00:00
parent f130600004
commit ed345a5dae
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,16 @@
<?php
/**
* A file filter that simply accepts any file whatsoever
*/
$cvs_version_tracker[]="\$Id: checks.php 12885 2007-06-11 18:27:24Z jbk $"; //Generated automatically - do not edit
class AllFilesFileFilter extends FileFilter {
function isValid($file){
return true;
}
}
?>

View File

@ -0,0 +1,13 @@
<?php
/**
* Any file filter must implement the following interface
*/
$cvs_version_tracker[]="\$Id: checks.php 12885 2007-06-11 18:27:24Z jbk $"; //Generated automatically - do not edit
abstract class FileFilter {
abstract function isValid($file);
}
?>