Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
50.00% covered (danger)
50.00%
4 / 8
33.33% covered (danger)
33.33%
1 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
IndexTrait
50.00% covered (danger)
50.00%
4 / 8
33.33% covered (danger)
33.33%
1 / 3
6.00
0.00% covered (danger)
0.00%
0 / 1
 getPropertyRealName
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getPropertyType
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getParentClasses
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
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) 2020 (original work) Open Assessment Technologies SA;
19 *
20 */
21
22declare(strict_types=1);
23
24namespace oat\tao\model\search\tasks;
25
26use core_kernel_classes_Class;
27use core_kernel_classes_Property;
28use core_kernel_classes_Resource;
29use oat\generis\model\WidgetRdf;
30use tao_helpers_Slug;
31
32trait IndexTrait
33{
34    public function getPropertyRealName(string $label, string $propertyTypeUri): string
35    {
36        $parsedUri = parse_url($propertyTypeUri);
37
38        return ($parsedUri['fragment'] ?? '') . '_' . tao_helpers_Slug::create($label);
39    }
40
41    public function getPropertyType(core_kernel_classes_Property $property): ?core_kernel_classes_Resource
42    {
43        $widget = new core_kernel_classes_Property(WidgetRdf::PROPERTY_WIDGET);
44
45        return $property->getOnePropertyValue($widget);
46    }
47
48    public function getParentClasses(core_kernel_classes_Class $class): array
49    {
50        $result = [];
51
52        foreach ($class->getParentClasses(true) as $parentClass) {
53            $result[] = $parentClass->getUri();
54        }
55
56        return $result;
57    }
58}