-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFilter.php
More file actions
executable file
·39 lines (34 loc) · 894 Bytes
/
Filter.php
File metadata and controls
executable file
·39 lines (34 loc) · 894 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
32
33
34
35
36
37
38
39
<?php
/**
* Abstract implementation of a Filter.
*
* @author Jorgen Evens <jorgen@wlab.be>
* @package WebLab
* @subpackage Filter
*
*/
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;
}
}