Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
13.95% |
6 / 43 |
|
11.11% |
1 / 9 |
CRAP | |
0.00% |
0 / 1 |
core_kernel_persistence_smoothsql_Property | |
13.95% |
6 / 43 |
|
11.11% |
1 / 9 |
158.34 | |
0.00% |
0 / 1 |
isLgDependent | |
100.00% |
6 / 6 |
|
100.00% |
1 / 1 |
3 | |||
isMultiple | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
2 | |||
getRange | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
2 | |||
delete | |
0.00% |
0 / 6 |
|
0.00% |
0 / 1 |
6 | |||
setRange | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
2 | |||
setDependsOnProperty | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
2 | |||
setMultiple | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
6 | |||
setLgDependent | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
6 | |||
singleton | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
6 |
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) 2002-2008 (original work) Public Research Centre Henri Tudor & University of Luxembourg |
19 | * (under the project TAO & TAO2); |
20 | * 2008-2010 (update and modification) Deutsche Institut für Internationale Pädagogische Forschung |
21 | * (under the project TAO-TRANSFER); |
22 | * 2009-2012 (update and modification) Public Research Centre Henri Tudor |
23 | * (under the project TAO-SUSTAIN & TAO-DEV); |
24 | * 2017 (update and modification) Open Assessment Technologies SA (under the project TAO-PRODUCT); |
25 | */ |
26 | |
27 | declare(strict_types=1); |
28 | |
29 | use oat\generis\model\GenerisRdf; |
30 | use oat\generis\model\OntologyRdfs; |
31 | |
32 | /** |
33 | * Short description of class core_kernel_persistence_smoothsql_Property |
34 | * |
35 | * @access public |
36 | * @author Jerome Bogaerts, <jerome.bogaerts@tudor.lu> |
37 | * @package generis |
38 | |
39 | */ |
40 | class core_kernel_persistence_smoothsql_Property extends core_kernel_persistence_smoothsql_Resource implements |
41 | core_kernel_persistence_PropertyInterface |
42 | { |
43 | // --- ASSOCIATIONS --- |
44 | |
45 | |
46 | // --- ATTRIBUTES --- |
47 | |
48 | /** |
49 | * Short description of attribute instance |
50 | * |
51 | * @access public |
52 | * @var Resource |
53 | */ |
54 | public static $instance = null; |
55 | // --- OPERATIONS --- |
56 | |
57 | |
58 | /** |
59 | * Short description of method isLgDependent |
60 | * |
61 | * @access public |
62 | * @author Jerome Bogaerts, <jerome.bogaerts@tudor.lu> |
63 | * @param Resource resource |
64 | * @return boolean |
65 | */ |
66 | public function isLgDependent(core_kernel_classes_Resource $resource) |
67 | { |
68 | $lgDependentProperty = $this->getModel()->getProperty(GenerisRdf::PROPERTY_IS_LG_DEPENDENT); |
69 | $lgDependentResource = $resource->getOnePropertyValue($lgDependentProperty); |
70 | $lgDependent = !is_null($lgDependentResource) |
71 | && $lgDependentResource instanceof \core_kernel_classes_Resource |
72 | && $lgDependentResource->getUri() == GenerisRdf::GENERIS_TRUE; |
73 | |
74 | return (bool) $lgDependent; |
75 | } |
76 | |
77 | /** |
78 | * Short description of method isMultiple |
79 | * |
80 | * @access public |
81 | * @author Jerome Bogaerts, <jerome.bogaerts@tudor.lu> |
82 | * @param Resource resource |
83 | * @return boolean |
84 | */ |
85 | public function isMultiple(core_kernel_classes_Resource $resource) |
86 | { |
87 | $returnValue = (bool) false; |
88 | throw new core_kernel_persistence_ProhibitedFunctionException( |
89 | "not implemented => The function (" . __METHOD__ |
90 | . ") is not available in this persistence implementation (" . __CLASS__ . ")" |
91 | ); |
92 | return (bool) $returnValue; |
93 | } |
94 | |
95 | /** |
96 | * Short description of method getRange |
97 | * |
98 | * @access public |
99 | * @author Jerome Bogaerts, <jerome.bogaerts@tudor.lu> |
100 | * @param Resource resource |
101 | * @return core_kernel_classes_Class |
102 | */ |
103 | public function getRange(core_kernel_classes_Resource $resource) |
104 | { |
105 | $returnValue = null; |
106 | throw new core_kernel_persistence_ProhibitedFunctionException( |
107 | "not implemented => The function (" . __METHOD__ |
108 | . ") is not available in this persistence implementation (" . __CLASS__ . ")" |
109 | ); |
110 | return $returnValue; |
111 | } |
112 | |
113 | /** |
114 | * Short description of method delete |
115 | * |
116 | * @access public |
117 | * @author Jerome Bogaerts, <jerome.bogaerts@tudor.lu> |
118 | * @param Resource resource |
119 | * @param boolean deleteReference |
120 | * @return boolean |
121 | */ |
122 | public function delete(core_kernel_classes_Resource $resource, $deleteReference = false) |
123 | { |
124 | $returnValue = (bool) false; |
125 | //delete all values of the property to delete |
126 | if ($deleteReference) { |
127 | $query = 'DELETE FROM "statements" WHERE "predicate" = ? AND ' . $this->getModelWriteSqlCondition(); |
128 | $returnValue = $this->getPersistence()->exec($query, [$resource->getUri()]); |
129 | } |
130 | $returnValue = parent::delete($resource, $deleteReference); |
131 | return (bool) $returnValue; |
132 | } |
133 | |
134 | /** |
135 | * Short description of method setRange |
136 | * |
137 | * @access public |
138 | * @author Jerome Bogaerts, <jerome.bogaerts@tudor.lu> |
139 | * @param Resource resource |
140 | * @param Class class |
141 | * @return core_kernel_classes_Class |
142 | */ |
143 | public function setRange(core_kernel_classes_Resource $resource, core_kernel_classes_Class $class) |
144 | { |
145 | $returnValue = null; |
146 | $rangeProp = new core_kernel_classes_Property(OntologyRdfs::RDFS_RANGE, __METHOD__); |
147 | $returnValue = $this->setPropertyValue($resource, $rangeProp, $class->getUri()); |
148 | return $returnValue; |
149 | } |
150 | |
151 | public function setDependsOnProperty( |
152 | core_kernel_classes_Resource $resource, |
153 | core_kernel_classes_Property $property |
154 | ): void { |
155 | $dependsOnProperty = new core_kernel_classes_Property( |
156 | GenerisRdf::PROPERTY_DEPENDS_ON_PROPERTY, |
157 | __METHOD__ |
158 | ); |
159 | |
160 | $this->setPropertyValue($resource, $dependsOnProperty, $property->getUri()); |
161 | } |
162 | |
163 | /** |
164 | * Short description of method setMultiple |
165 | * |
166 | * @access public |
167 | * @author Jerome Bogaerts, <jerome.bogaerts@tudor.lu> |
168 | * @param Resource resource |
169 | * @param boolean isMultiple |
170 | * @return void |
171 | */ |
172 | public function setMultiple(core_kernel_classes_Resource $resource, $isMultiple) |
173 | { |
174 | $multipleProperty = new core_kernel_classes_Property(GenerisRdf::PROPERTY_MULTIPLE); |
175 | $value = ((bool)$isMultiple) ? GenerisRdf::GENERIS_TRUE : GenerisRdf::GENERIS_FALSE ; |
176 | $this->removePropertyValues($resource, $multipleProperty); |
177 | $this->setPropertyValue($resource, $multipleProperty, $value); |
178 | } |
179 | |
180 | /** |
181 | * Short description of method setLgDependent |
182 | * |
183 | * @access public |
184 | * @author Jerome Bogaerts, <jerome.bogaerts@tudor.lu> |
185 | * @param Resource resource |
186 | * @param boolean isLgDependent |
187 | * @return void |
188 | */ |
189 | public function setLgDependent(core_kernel_classes_Resource $resource, $isLgDependent) |
190 | { |
191 | $lgDependentProperty = new core_kernel_classes_Property(GenerisRdf::PROPERTY_IS_LG_DEPENDENT, __METHOD__); |
192 | $value = ((bool)$isLgDependent) ? GenerisRdf::GENERIS_TRUE : GenerisRdf::GENERIS_FALSE ; |
193 | $this->removePropertyValues($resource, $lgDependentProperty); |
194 | $this->setPropertyValue($resource, $lgDependentProperty, $value); |
195 | } |
196 | |
197 | /** |
198 | * Short description of method singleton |
199 | * |
200 | * @access public |
201 | * @author Jerome Bogaerts, <jerome.bogaerts@tudor.lu> |
202 | * @return core_kernel_classes_Resource |
203 | */ |
204 | public static function singleton() |
205 | { |
206 | if (core_kernel_persistence_smoothsql_Property::$instance == null) { |
207 | core_kernel_persistence_smoothsql_Property::$instance = new core_kernel_persistence_smoothsql_Property(); |
208 | } |
209 | $returnValue = core_kernel_persistence_smoothsql_Property::$instance; |
210 | return $returnValue; |
211 | } |
212 | } |