Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
8 / 8 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
SecondaryPropertySpecification | |
100.00% |
8 / 8 |
|
100.00% |
2 / 2 |
3 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
isSatisfiedBy | |
100.00% |
7 / 7 |
|
100.00% |
1 / 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) 2021 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\tao\model\Lists\Business\Specification; |
24 | |
25 | use core_kernel_classes_Property; |
26 | use oat\tao\model\Context\ContextInterface; |
27 | |
28 | class SecondaryPropertySpecification |
29 | { |
30 | /** @var DependentPropertySpecification */ |
31 | private $dependentPropertySpecification; |
32 | |
33 | public function __construct(DependentPropertySpecification $dependentPropertySpecification) |
34 | { |
35 | $this->dependentPropertySpecification = $dependentPropertySpecification; |
36 | } |
37 | |
38 | public function isSatisfiedBy(ContextInterface $context): bool |
39 | { |
40 | /** @var int $index */ |
41 | $index = $context->getParameter(PropertySpecificationContext::PARAM_FORM_INDEX); |
42 | |
43 | /** @var core_kernel_classes_Property $property */ |
44 | $property = $context->getParameter(PropertySpecificationContext::PARAM_PROPERTY); |
45 | |
46 | /** @var array $newData */ |
47 | $newData = $context->getParameter(PropertySpecificationContext::PARAM_FORM_DATA); |
48 | |
49 | $dependsOnProperty = $newData[$index . '_depends-on-property'] ?? null; |
50 | |
51 | if ($dependsOnProperty === null) { |
52 | return $this->dependentPropertySpecification->isSatisfiedBy($property); |
53 | } |
54 | |
55 | return !empty(trim($dependsOnProperty)); |
56 | } |
57 | } |