19 declare(strict_types=1);
33 'discipline' =>
'Discipline',
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' 60 if (!$a_taxon_path_id) {
64 $tax->setMetaId($a_taxon_path_id);
73 $tax->setParentType(
'meta_classification');
89 $key->setMetaId($a_keyword_id);
98 $key->setParentType(
'meta_classification');
106 switch ($a_purpose) {
110 case 'EducationalObjective':
111 case 'AccessibilityRestrictions':
112 case 'EducationalLevel':
114 case 'SecurityLevel':
116 $this->purpose = $a_purpose;
131 $this->description = $a_description;
141 $this->description_language = $lng_obj;
146 return is_object($this->description_language) ? $this->description_language :
null;
151 return is_object($this->description_language) ? $this->description_language->getLanguageCode() :
'';
157 $fields[
'meta_classification_id'] = array(
'integer', $next_id = $this->db->nextId(
'il_meta_classification'));
159 if ($this->db->insert(
'il_meta_classification', $fields)) {
168 return $this->
getMetaId() && $this->db->update(
169 'il_meta_classification',
171 [
"meta_classification_id" => [
'integer', $this->
getMetaId()]]
175 public function delete():
bool 178 $query =
"DELETE FROM il_meta_classification " .
179 "WHERE meta_classification_id = " . $this->db->quote($this->
getMetaId(),
'integer');
180 $res = $this->db->manipulate($query);
204 $purpose = (string) array_search(
206 self::PURPOSE_TRANSLATION
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),
222 $query =
"SELECT * FROM il_meta_classification " .
223 "WHERE meta_classification_id = " . $this->db->quote($this->
getMetaId(),
'integer');
225 $res = $this->db->query($query);
230 if (key_exists($row->purpose ??
'', self::PURPOSE_TRANSLATION)) {
231 $row->purpose = self::PURPOSE_TRANSLATION[$row->purpose ??
''];
235 $this->
setObjId((
int) $row->obj_id);
239 $this->description_language =
new ilMDLanguageItem($row->description_language ??
'');
253 foreach ($taxs as
$id) {
255 $tax->toXML($writer);
259 $tax->toXML($writer);
273 foreach ($keys as $id) {
275 $key->toXML($writer);
279 $key->toXML($writer);
289 public static function _getIds(
int $a_rbac_id,
int $a_obj_id): array
293 $ilDB = $DIC[
'ilDB'];
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');
302 $ids[] = (
int) $row->meta_classification_id;
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)
setPurpose(string $a_purpose)
xmlEndTag(string $tag)
Writes an endtag.
setDescriptionLanguage(ilMDLanguageItem $lng_obj)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getDescriptionLanguageCode()
ilMDLanguageItem $description_language
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
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)