mirror of https://github.com/BOINC/boinc.git
parent
f130600004
commit
ed345a5dae
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
|
@ -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);
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in New Issue