19 declare(strict_types=1);
37 $this->entity = $a_entity;
45 public function setDate(
string $a_date): void
47 $this->date = $a_date;
57 $this->description = $a_desc;
67 $this->description_language = $lng_obj;
77 if (is_object($this->description_language)) {
78 return $this->description_language->getLanguageCode();
86 $fields[
'meta_annotation_id'] = array(
'integer', $next_id = $this->db->nextId(
'il_meta_annotation'));
88 if ($this->db->insert(
'il_meta_annotation', $fields)) {
97 return $this->
getMetaId() && $this->db->update(
100 array(
"meta_annotation_id" => array(
'integer', $this->
getMetaId()))
104 public function delete():
bool 107 $query =
"DELETE FROM il_meta_annotation " .
108 "WHERE meta_annotation_id = " . $this->db->quote($this->
getMetaId(),
'integer');
109 $res = $this->db->manipulate($query);
122 'rbac_id' => array(
'integer', $this->
getRBACId()),
123 'obj_id' => array(
'integer', $this->
getObjId()),
124 'obj_type' => array(
'text', $this->
getObjType()),
125 'entity' => array(
'clob', $this->
getEntity()),
126 'a_date' => array(
'clob', $this->
getDate()),
135 $query =
"SELECT * FROM il_meta_annotation " .
136 "WHERE meta_annotation_id = " . $this->db->quote($this->
getMetaId(),
'integer');
138 $res = $this->db->query($query);
141 $this->
setObjId((
int) $row->obj_id);
144 $this->
setDate($row->a_date ??
'');
146 $this->description_language =
new ilMDLanguageItem($row->description_language ??
'');
172 public static function _getIds(
int $a_rbac_id,
int $a_obj_id): array
176 $ilDB = $DIC[
'ilDB'];
178 $query =
"SELECT meta_annotation_id FROM il_meta_annotation " .
179 "WHERE rbac_id = " .
$ilDB->quote($a_rbac_id,
'integer') .
" " .
180 "AND obj_id = " .
$ilDB->quote($a_obj_id,
'integer');
185 $ids[] = (
int) $row->meta_annotation_id;
static _getIds(int $a_rbac_id, int $a_obj_id)
ilMDLanguageItem $description_language
setEntity(string $a_entity)
xmlEndTag(string $tag)
Writes an endtag.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getDescriptionLanguageCode()
toXML(ilXmlWriter $writer)
setDescription(string $a_desc)
setDescriptionLanguage(ilMDLanguageItem $lng_obj)
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)