Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 13 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
TestCenterColumn | |
0.00% |
0 / 13 |
|
0.00% |
0 / 1 |
20 | |
0.00% |
0 / 1 |
getTestCenterLabel | |
0.00% |
0 / 13 |
|
0.00% |
0 / 1 |
20 |
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 (under the project TAO-PRODUCT); |
19 | * |
20 | */ |
21 | |
22 | declare(strict_types=1); |
23 | |
24 | namespace oat\taoOutcomeUi\model\table; |
25 | |
26 | use core_kernel_classes_Resource; |
27 | |
28 | class TestCenterColumn extends \tao_models_classes_table_PropertyColumn |
29 | { |
30 | private const TEST_CENTER_LABEL_PROPERTY = 'http://www.w3.org/2000/01/rdf-schema#label'; |
31 | private const ELIGIBLE_TEST_CENTER_RDF = 'http://www.tao.lu/Ontologies/TAOProctor.rdf#EligibileTestCenter'; |
32 | private const ELIGIBLE_DELIVERY_RDF = 'http://www.tao.lu/Ontologies/TAOProctor.rdf#EligibileDelivery'; |
33 | |
34 | public function getTestCenterLabel($value, $delivery): string |
35 | { |
36 | $propertyValue = ""; |
37 | $valueResource = new core_kernel_classes_Resource($value); |
38 | $testCenter = $valueResource->getOnePropertyValue( |
39 | new \core_kernel_classes_Property(self::ELIGIBLE_TEST_CENTER_RDF) |
40 | ); |
41 | $eligibleDelivery = $valueResource->getOnePropertyValue( |
42 | new \core_kernel_classes_Property(self::ELIGIBLE_DELIVERY_RDF) |
43 | ); |
44 | if ($testCenter !== null && $eligibleDelivery !== null && $delivery->getUri() === $eligibleDelivery->getUri()) { |
45 | $propertyValue = (string)$testCenter->getOnePropertyValue( |
46 | new \core_kernel_classes_Property(self::TEST_CENTER_LABEL_PROPERTY) |
47 | ); |
48 | } |
49 | |
50 | return $propertyValue; |
51 | } |
52 | } |