Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 17 |
|
0.00% |
0 / 5 |
CRAP | |
0.00% |
0 / 1 |
AbstractSearchElement | |
0.00% |
0 / 17 |
|
0.00% |
0 / 5 |
72 | |
0.00% |
0 / 1 |
feed | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
12 | |||
getEvaluatedValue | |
0.00% |
0 / 6 |
|
0.00% |
0 / 1 |
2 | |||
getRawValue | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
addValue | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
6 | |||
getValues | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | /** |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2020 (original work) Open Assessment Technologies SA; |
19 | * |
20 | * @author Sergei Mikhailov <sergei.mikhailov@taotesting.com> |
21 | */ |
22 | |
23 | declare(strict_types=1); |
24 | |
25 | namespace oat\tao\helpers\form\elements; |
26 | |
27 | use tao_helpers_form_FormElement; |
28 | use tao_helpers_Uri; |
29 | |
30 | abstract class AbstractSearchElement extends tao_helpers_form_FormElement |
31 | { |
32 | protected const VALUE_DELIMITER = ','; |
33 | |
34 | /** @var string[] */ |
35 | protected $values = []; |
36 | |
37 | /** |
38 | * @inheritDoc |
39 | */ |
40 | public function feed(): void |
41 | { |
42 | $newValuesMap = array_flip(explode(static::VALUE_DELIMITER, ($_POST[$this->name] ?? ''))); |
43 | |
44 | $this->values = array_intersect_key($this->values, $newValuesMap); |
45 | |
46 | foreach (array_keys(array_diff_key($newValuesMap, $this->values)) as $newValue) { |
47 | if ($newValue) { |
48 | $this->addValue(new ElementValue($newValue, $newValue)); |
49 | } |
50 | } |
51 | } |
52 | |
53 | public function getEvaluatedValue(): array |
54 | { |
55 | return array_map( |
56 | static function ($value) { |
57 | return tao_helpers_Uri::decode($value); |
58 | }, |
59 | $this->values |
60 | ); |
61 | } |
62 | |
63 | public function getRawValue() |
64 | { |
65 | return $this->values; |
66 | } |
67 | |
68 | public function addValue($value): void |
69 | { |
70 | if ($value instanceof ElementValue) { |
71 | $this->values[$value->getUri()] = $value; |
72 | } else { |
73 | $encodedValue = tao_helpers_Uri::encode($value); |
74 | $this->values[$encodedValue] = new ElementValue($encodedValue, $value); |
75 | } |
76 | } |
77 | |
78 | public function getValues(): array |
79 | { |
80 | return $this->values; |
81 | } |
82 | } |