ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMDClassification.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
32  private const PURPOSE_TRANSLATION = [
33  'discipline' => 'Discipline',
34  'idea' => 'Idea',
35  'prerequisite' => 'Prerequisite',
36  'educational objective' => 'EducationalObjective',
37  'accessibility restrictions' => 'AccessibilityRestrictions',
38  'educational level' => 'EducationalLevel',
39  'skill level' => 'SkillLevel',
40  'security level' => 'SecurityLevel',
41  'competency' => 'Competency'
42  ];
43 
44  private string $purpose = '';
45  private string $description = '';
47 
48  // METHODS OF CLIENT OBJECTS (TaxonPath, Keyword)
49 
53  public function getTaxonPathIds(): array
54  {
55  return ilMDTaxonPath::_getIds($this->getRBACId(), $this->getObjId(), $this->getMetaId(), 'meta_classification');
56  }
57 
58  public function getTaxonPath(int $a_taxon_path_id): ?ilMDTaxonPath
59  {
60  if (!$a_taxon_path_id) {
61  return null;
62  }
63  $tax = new ilMDTaxonPath();
64  $tax->setMetaId($a_taxon_path_id);
65 
66  return $tax;
67  }
68 
69  public function addTaxonPath(): ilMDTaxonPath
70  {
71  $tax = new ilMDTaxonPath($this->getRBACId(), $this->getObjId(), $this->getObjType());
72  $tax->setParentId($this->getMetaId());
73  $tax->setParentType('meta_classification');
74 
75  return $tax;
76  }
77 
78  public function getKeywordIds(): ?array
79  {
80  return ilMDKeyword::_getIds($this->getRBACId(), $this->getObjId(), $this->getMetaId(), 'meta_classification');
81  }
82 
83  public function getKeyword(int $a_keyword_id): ?ilMDKeyword
84  {
85  if (!$a_keyword_id) {
86  return null;
87  }
88  $key = new ilMDKeyword();
89  $key->setMetaId($a_keyword_id);
90 
91  return $key;
92  }
93 
94  public function addKeyword(): ilMDKeyword
95  {
96  $key = new ilMDKeyword($this->getRBACId(), $this->getObjId(), $this->getObjType());
97  $key->setParentId($this->getMetaId());
98  $key->setParentType('meta_classification');
99 
100  return $key;
101  }
102 
103  // SET/GET
104  public function setPurpose(string $a_purpose): bool
105  {
106  switch ($a_purpose) {
107  case 'Discipline':
108  case 'Idea':
109  case 'Prerequisite':
110  case 'EducationalObjective':
111  case 'AccessibilityRestrictions':
112  case 'EducationalLevel':
113  case 'SkillLevel':
114  case 'SecurityLevel':
115  case 'Competency':
116  $this->purpose = $a_purpose;
117  return true;
118 
119  default:
120  return false;
121  }
122  }
123 
124  public function getPurpose(): string
125  {
126  return $this->purpose;
127  }
128 
129  public function setDescription(string $a_description): void
130  {
131  $this->description = $a_description;
132  }
133 
134  public function getDescription(): string
135  {
136  return $this->description;
137  }
138 
139  public function setDescriptionLanguage(ilMDLanguageItem $lng_obj): void
140  {
141  $this->description_language = $lng_obj;
142  }
143 
145  {
146  return is_object($this->description_language) ? $this->description_language : null;
147  }
148 
149  public function getDescriptionLanguageCode(): string
150  {
151  return is_object($this->description_language) ? $this->description_language->getLanguageCode() : '';
152  }
153 
154  public function save(): int
155  {
156  $fields = $this->__getFields();
157  $fields['meta_classification_id'] = array('integer', $next_id = $this->db->nextId('il_meta_classification'));
158 
159  if ($this->db->insert('il_meta_classification', $fields)) {
160  $this->setMetaId($next_id);
161  return $this->getMetaId();
162  }
163  return 0;
164  }
165 
166  public function update(): bool
167  {
168  return $this->getMetaId() && $this->db->update(
169  'il_meta_classification',
170  $this->__getFields(),
171  ["meta_classification_id" => ['integer', $this->getMetaId()]]
172  );
173  }
174 
175  public function delete(): bool
176  {
177  if ($this->getMetaId()) {
178  $query = "DELETE FROM il_meta_classification " .
179  "WHERE meta_classification_id = " . $this->db->quote($this->getMetaId(), 'integer');
180  $res = $this->db->manipulate($query);
181 
182  foreach ($this->getTaxonPathIds() as $id) {
183  $tax = $this->getTaxonPath($id);
184  $tax->delete();
185  }
186  foreach ($this->getKeywordIds() as $id) {
187  $key = $this->getKeyword($id);
188  $key->delete();
189  }
190 
191  return true;
192  }
193  return false;
194  }
195 
199  public function __getFields(): array
200  {
204  $purpose = (string) array_search(
205  $this->getPurpose(),
206  self::PURPOSE_TRANSLATION
207  );
208 
209  return array(
210  'rbac_id' => array('integer', $this->getRBACId()),
211  'obj_id' => array('integer', $this->getObjId()),
212  'obj_type' => array('text', $this->getObjType()),
213  'purpose' => array('text', $purpose),
214  'description' => array('text', $this->getDescription()),
215  'description_language' => array('text', $this->getDescriptionLanguageCode())
216  );
217  }
218 
219  public function read(): bool
220  {
221  if ($this->getMetaId()) {
222  $query = "SELECT * FROM il_meta_classification " .
223  "WHERE meta_classification_id = " . $this->db->quote($this->getMetaId(), 'integer');
224 
225  $res = $this->db->query($query);
226  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
230  if (key_exists($row->purpose ?? '', self::PURPOSE_TRANSLATION)) {
231  $row->purpose = self::PURPOSE_TRANSLATION[$row->purpose ?? ''];
232  }
233 
234  $this->setRBACId((int) $row->rbac_id);
235  $this->setObjId((int) $row->obj_id);
236  $this->setObjType($row->obj_type);
237  $this->setPurpose($row->purpose ?? '');
238  $this->setDescription($row->description ?? '');
239  $this->description_language = new ilMDLanguageItem($row->description_language ?? '');
240  }
241  }
242  return true;
243  }
244 
245  public function toXML(ilXmlWriter $writer): void
246  {
247  $writer->xmlStartTag('Classification', array(
248  'Purpose' => $this->getPurpose() ?: 'Idea'
249  ));
250 
251  // Taxon Path
252  $taxs = $this->getTaxonPathIds();
253  foreach ($taxs as $id) {
254  $tax = $this->getTaxonPath($id);
255  $tax->toXML($writer);
256  }
257  if (!count($taxs)) {
258  $tax = new ilMDTaxonPath($this->getRBACId(), $this->getObjId());
259  $tax->toXML($writer);
260  }
261 
262  // Description
263  $writer->xmlElement(
264  'Description',
265  array(
266  'Language' => $this->getDescriptionLanguageCode() ?: 'en'
267  ),
268  $this->getDescription()
269  );
270 
271  // Keyword
272  $keys = $this->getKeywordIds();
273  foreach ($keys as $id) {
274  $key = $this->getKeyword($id);
275  $key->toXML($writer);
276  }
277  if (!count($keys)) {
278  $key = new ilMDKeyword($this->getRBACId(), $this->getObjId());
279  $key->toXML($writer);
280  }
281  $writer->xmlEndTag('Classification');
282  }
283 
284  // STATIC
285 
289  public static function _getIds(int $a_rbac_id, int $a_obj_id): array
290  {
291  global $DIC;
292 
293  $ilDB = $DIC['ilDB'];
294 
295  $query = "SELECT meta_classification_id FROM il_meta_classification " .
296  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id, 'integer') . " " .
297  "AND obj_id = " . $ilDB->quote($a_obj_id, 'integer');
298 
299  $res = $ilDB->query($query);
300  $ids = [];
301  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
302  $ids[] = (int) $row->meta_classification_id;
303  }
304  return $ids;
305  }
306 }
$res
Definition: ltiservices.php:66
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
const PURPOSE_TRANSLATION
Compatibility fix for legacy MD classes for new db tables.
getTaxonPath(int $a_taxon_path_id)
toXML(ilXmlWriter $writer)
setRBACId(int $a_id)
setPurpose(string $a_purpose)
xmlEndTag(string $tag)
Writes an endtag.
setDescriptionLanguage(ilMDLanguageItem $lng_obj)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setObjId(int $a_id)
ilMDLanguageItem $description_language
global $DIC
Definition: shib_login.php:22
static _getIds(int $a_rbac_id, int $a_obj_id)
getKeyword(int $a_keyword_id)
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
setMetaId(int $a_meta_id, bool $a_read_data=true)
setObjType(string $a_type)
setDescription(string $a_description)