1 | <?php |
||
27 | abstract class AbstractRange extends AbstractSingleRequestValueFilter implements |
||
28 | FieldAwareInterface, |
||
29 | ViewDataFactoryInterface |
||
30 | { |
||
31 | use FieldAwareTrait; |
||
32 | |||
33 | /** |
||
34 | * @var bool |
||
35 | */ |
||
36 | private $inclusive = false; |
||
37 | |||
38 | /** |
||
39 | * @param bool $inclusive |
||
40 | * |
||
41 | * @return $this |
||
42 | */ |
||
43 | public function setInclusive($inclusive) |
||
49 | |||
50 | /** |
||
51 | * @return bool |
||
52 | */ |
||
53 | public function isInclusive() |
||
57 | |||
58 | /** |
||
59 | * {@inheritdoc} |
||
60 | */ |
||
61 | public function createViewData() |
||
65 | |||
66 | /** |
||
67 | * {@inheritdoc} |
||
68 | */ |
||
69 | public function modifySearch(Search $search, FilterState $state = null, SearchRequest $request = null) |
||
76 | } |
||
77 |