1 | <?php |
||
25 | class MultiTermChoice extends SingleTermChoice |
||
26 | { |
||
27 | |||
28 | const OPERATION_OR = 'or'; |
||
29 | const OPERATION_AND = 'and'; |
||
30 | const OPERATION_NOT_AND = 'not_and'; |
||
31 | |||
32 | /** |
||
33 | * @var string |
||
34 | */ |
||
35 | private $booleanOperation; |
||
36 | |||
37 | /** |
||
38 | * @return mixed |
||
39 | */ |
||
40 | public function getBooleanOperation() |
||
44 | |||
45 | /** |
||
46 | * @param $operation |
||
47 | */ |
||
48 | public function setBooleanOperation($operation) |
||
52 | |||
53 | /** |
||
54 | * {@inheritdoc} |
||
55 | */ |
||
56 | public function modifySearch(Search $search, FilterState $state = null, SearchRequest $request = null) |
||
76 | |||
77 | /** |
||
78 | * {@inheritdoc} |
||
79 | */ |
||
80 | public function getState(Request $request) |
||
90 | |||
91 | /** |
||
92 | * Returns url with selected term applied. |
||
93 | * |
||
94 | * @param string $key |
||
95 | * @param ViewData $data |
||
96 | * |
||
97 | * @return array |
||
98 | */ |
||
99 | protected function getOptionUrlParameters($key, ViewData $data) |
||
111 | |||
112 | /** |
||
113 | * {@inheritdoc} |
||
114 | */ |
||
115 | protected function getUnsetUrlParameters($key, ViewData $data) |
||
129 | |||
130 | /** |
||
131 | * {@inheritdoc} |
||
132 | */ |
||
133 | protected function isChoiceActive($key, ViewData $data) |
||
137 | } |
||
138 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.