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