|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of the Sonata package. |
|
5
|
|
|
* |
|
6
|
|
|
* (c) Thomas Rabaix <[email protected]> |
|
7
|
|
|
* |
|
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
9
|
|
|
* file that was distributed with this source code. |
|
10
|
|
|
*/ |
|
11
|
|
|
|
|
12
|
|
|
namespace Sonata\DoctrinePHPCRAdminBundle\Filter; |
|
13
|
|
|
|
|
14
|
|
|
use Sonata\AdminBundle\Form\Type\Filter\ChoiceType; |
|
15
|
|
|
use Sonata\AdminBundle\Datagrid\ProxyQueryInterface; |
|
16
|
|
|
|
|
17
|
|
|
class ChoiceFilter extends Filter |
|
18
|
|
|
{ |
|
19
|
|
|
/** |
|
20
|
|
|
* {@inheritDoc} |
|
21
|
|
|
*/ |
|
22
|
|
|
public function filter(ProxyQueryInterface $proxyQuery, $alias, $field, $data) |
|
23
|
|
|
{ |
|
24
|
|
|
if (!$data || !is_array($data) || !array_key_exists('type', $data) || !array_key_exists('value', $data)) { |
|
25
|
|
|
return; |
|
26
|
|
|
} |
|
27
|
|
|
|
|
28
|
|
|
$values = (array) $data['value']; |
|
29
|
|
|
$type = $data['type']; |
|
30
|
|
|
|
|
31
|
|
|
// clean values |
|
32
|
|
|
foreach ($values as $key => $value) { |
|
33
|
|
|
$value = trim($value); |
|
34
|
|
|
if (!$value) { |
|
35
|
|
|
unset($values[$key]); |
|
36
|
|
|
} else { |
|
37
|
|
|
$values[$key] = $value; |
|
38
|
|
|
} |
|
39
|
|
|
} |
|
40
|
|
|
|
|
41
|
|
|
// if values not set or "all" specified, do not do this filter |
|
42
|
|
|
if (!$values || in_array('all', $values, true)) { |
|
|
|
|
|
|
43
|
|
|
return; |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
|
|
$andX = $this->getWhere($proxyQuery)->andX(); |
|
|
|
|
|
|
47
|
|
|
|
|
48
|
|
|
foreach ($values as $value) { |
|
49
|
|
|
if ($type == ChoiceType::TYPE_NOT_CONTAINS) { |
|
50
|
|
|
$andX->not()->like()->field('a.'.$field)->literal('%'.$value.'%'); |
|
51
|
|
|
} elseif ($type == ChoiceType::TYPE_CONTAINS) { |
|
52
|
|
|
$andX->like()->field('a.'.$field)->literal('%'.$value.'%'); |
|
53
|
|
|
} elseif ($type == ChoiceType::TYPE_EQUAL) { |
|
54
|
|
|
$andX->like()->field('a.'.$field)->literal($value); |
|
55
|
|
|
} |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
|
|
// filter is active as we have now modified the query |
|
59
|
|
|
$this->active = true; |
|
60
|
|
|
} |
|
61
|
|
|
|
|
62
|
|
|
/** |
|
63
|
|
|
* {@inheritDoc} |
|
64
|
|
|
*/ |
|
65
|
|
|
public function getDefaultOptions() |
|
66
|
|
|
{ |
|
67
|
|
|
return array(); |
|
68
|
|
|
} |
|
69
|
|
|
|
|
70
|
|
|
/** |
|
71
|
|
|
* {@inheritDoc} |
|
72
|
|
|
*/ |
|
73
|
|
|
public function getRenderSettings() |
|
74
|
|
|
{ |
|
75
|
|
|
return array('sonata_type_filter_default', array( |
|
76
|
|
|
'operator_type' => 'sonata_type_equal', |
|
77
|
|
|
'field_type' => $this->getFieldType(), |
|
78
|
|
|
'field_options' => $this->getFieldOptions(), |
|
79
|
|
|
'label' => $this->getLabel() |
|
80
|
|
|
)); |
|
81
|
|
|
} |
|
82
|
|
|
} |
|
83
|
|
|
|
This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.
Consider making the comparison explicit by using
empty(..)or! empty(...)instead.