blob: ba0c9c5eca79a01ed9ff1b5561d31e2c93149ebc (
plain)
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
40
41
42
43
44
45
46
47
48
|
<?php
namespace Kanboard\Filter;
/**
* Base comparison filter class
*
* @package filter
*/
abstract class BaseComparisonFilter extends BaseFilter
{
/**
* Parse operator in the input string
*
* @access protected
* @return string
*/
protected function parseOperator()
{
$operators = array(
'<=' => 'lte',
'>=' => 'gte',
'<' => 'lt',
'>' => 'gt',
);
foreach ($operators as $operator => $method) {
if (strpos($this->value, $operator) === 0) {
$this->value = substr($this->value, strlen($operator));
return $method;
}
}
return 'eq';
}
/**
* Apply a comparison filter
*
* @access protected
* @param string $field
*/
protected function applyComparisonFilter($field)
{
$method = $this->parseOperator();
$this->query->$method($field, $this->value);
}
}
|