1 | <?php |
||
26 | class FieldValue extends AbstractSingleValue implements RelationsAwareInterface |
||
27 | { |
||
28 | use RelationsAwareTrait; |
||
29 | |||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $value; |
||
34 | |||
35 | /** |
||
36 | * Setter for field value. |
||
37 | * |
||
38 | * @param $value |
||
39 | * |
||
40 | * @return $this |
||
41 | */ |
||
42 | public function setValue($value) |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function getState(Request $request) |
||
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | */ |
||
63 | public function modifySearch(Search $search, FilterState $state = null, SearchRequest $request = null) |
||
67 | } |
||
68 |