3 declare(strict_types=1);
44 if (!$a_taxon_path_id) {
48 $tax->setMetaId($a_taxon_path_id);
57 $tax->setParentType(
'meta_classification');
73 $key->setMetaId($a_keyword_id);
82 $key->setParentType(
'meta_classification');
94 case 'EducationalObjective':
95 case 'AccessibilityRestrictions':
96 case 'EducationalLevel':
100 $this->purpose = $a_purpose;
115 $this->description = $a_description;
125 $this->description_language = $lng_obj;
130 return is_object($this->description_language) ? $this->description_language : null;
135 return is_object($this->description_language) ? $this->description_language->getLanguageCode() :
'';
141 $fields[
'meta_classification_id'] = array(
'integer', $next_id = $this->db->nextId(
'il_meta_classification'));
143 if ($this->db->insert(
'il_meta_classification', $fields)) {
152 return $this->
getMetaId() && $this->db->update(
153 'il_meta_classification',
155 [
"meta_classification_id" => [
'integer', $this->
getMetaId()]]
159 public function delete():
bool 162 $query =
"DELETE FROM il_meta_classification " .
163 "WHERE meta_classification_id = " . $this->db->quote($this->
getMetaId(),
'integer');
186 'rbac_id' => array(
'integer', $this->
getRBACId()),
187 'obj_id' => array(
'integer', $this->
getObjId()),
188 'obj_type' => array(
'text', $this->
getObjType()),
189 'purpose' => array(
'text', $this->
getPurpose()),
198 $query =
"SELECT * FROM il_meta_classification " .
199 "WHERE meta_classification_id = " . $this->db->quote($this->
getMetaId(),
'integer');
204 $this->
setObjId((
int) $row->obj_id);
208 $this->description_language =
new ilMDLanguageItem($row->description_language ??
'');
222 foreach ($taxs as
$id) {
224 $tax->toXML($writer);
228 $tax->toXML($writer);
242 foreach (
$keys as $id) {
244 $key->toXML($writer);
248 $key->toXML($writer);
258 public static function _getIds(
int $a_rbac_id,
int $a_obj_id): array
262 $ilDB = $DIC[
'ilDB'];
264 $query =
"SELECT meta_classification_id FROM il_meta_classification " .
265 "WHERE rbac_id = " .
$ilDB->quote($a_rbac_id,
'integer') .
" " .
266 "AND obj_id = " .
$ilDB->quote($a_obj_id,
'integer');
271 $ids[] = (
int) $row->meta_classification_id;
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
getTaxonPath(int $a_taxon_path_id)
toXML(ilXmlWriter $writer)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setPurpose(string $a_purpose)
xmlEndTag(string $tag)
Writes an endtag.
setDescriptionLanguage(ilMDLanguageItem $lng_obj)
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)