forked from JorgenEvens/WebLab_Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilter.php
More file actions
31 lines (26 loc) · 726 Bytes
/
Copy pathFilter.php
File metadata and controls
31 lines (26 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
abstract class WebLab_Filter
{
protected $_test = array();
public function __construct( $config, $value=null )
{
if( is_array( $config ) )
{
$this->_test = $config;
}else if( is_string( $config ) || !empty( $value ) )
{
$this->_test = array( $config => $value );
}
}
public function test( $value )
{
foreach( $this->_test as $test => $testValue )
{
if( !$this->$test( $testValue, $value ) )
{
return false;
}
}
return true;
}
}