ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMDAnnotation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 class ilMDAnnotation extends ilMDBase
28 {
29  private string $entity = '';
30  private string $date = '';
31  private string $description = '';
33 
34  // SET/GET
35  public function setEntity(string $a_entity): void
36  {
37  $this->entity = $a_entity;
38  }
39 
40  public function getEntity(): string
41  {
42  return $this->entity;
43  }
44 
45  public function setDate(string $a_date): void
46  {
47  $this->date = $a_date;
48  }
49 
50  public function getDate(): string
51  {
52  return $this->date;
53  }
54 
55  public function setDescription(string $a_desc): void
56  {
57  $this->description = $a_desc;
58  }
59 
60  public function getDescription(): string
61  {
62  return $this->description;
63  }
64 
65  public function setDescriptionLanguage(ilMDLanguageItem $lng_obj): void
66  {
67  $this->description_language = $lng_obj;
68  }
69 
71  {
73  }
74 
75  public function getDescriptionLanguageCode(): string
76  {
77  if (is_object($this->description_language)) {
78  return $this->description_language->getLanguageCode();
79  }
80  return '';
81  }
82 
83  public function save(): int
84  {
85  $fields = $this->__getFields();
86  $fields['meta_annotation_id'] = array('integer', $next_id = $this->db->nextId('il_meta_annotation'));
87 
88  if ($this->db->insert('il_meta_annotation', $fields)) {
89  $this->setMetaId($next_id);
90  return $this->getMetaId();
91  }
92  return 0;
93  }
94 
95  public function update(): bool
96  {
97  return $this->getMetaId() && $this->db->update(
98  'il_meta_annotation',
99  $this->__getFields(),
100  array("meta_annotation_id" => array('integer', $this->getMetaId()))
101  );
102  }
103 
104  public function delete(): bool
105  {
106  if ($this->getMetaId()) {
107  $query = "DELETE FROM il_meta_annotation " .
108  "WHERE meta_annotation_id = " . $this->db->quote($this->getMetaId(), 'integer');
109  $res = $this->db->manipulate($query);
110 
111  return true;
112  }
113  return false;
114  }
115 
119  public function __getFields(): array
120  {
121  return array(
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()),
127  'description' => array('clob', $this->getDescription()),
128  'description_language' => array('text', $this->getDescriptionLanguageCode())
129  );
130  }
131 
132  public function read(): bool
133  {
134  if ($this->getMetaId()) {
135  $query = "SELECT * FROM il_meta_annotation " .
136  "WHERE meta_annotation_id = " . $this->db->quote($this->getMetaId(), 'integer');
137 
138  $res = $this->db->query($query);
139  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
140  $this->setRBACId((int) $row->rbac_id);
141  $this->setObjId((int) $row->obj_id);
142  $this->setObjType($row->obj_type);
143  $this->setEntity($row->entity ?? '');
144  $this->setDate($row->a_date ?? '');
145  $this->setDescription($row->description ?? '');
146  $this->description_language = new ilMDLanguageItem($row->description_language ?? '');
147  }
148  }
149  return true;
150  }
151 
152  public function toXML(ilXmlWriter $writer): void
153  {
154  $writer->xmlStartTag('Annotation');
155  $writer->xmlElement('Entity', null, $this->getEntity());
156  $writer->xmlElement('Date', null, $this->getDate());
157  $writer->xmlElement(
158  'Description',
159  array(
160  'Language' => $this->getDescriptionLanguageCode() ?: 'en'
161  ),
162  $this->getDescription()
163  );
164  $writer->xmlEndTag('Annotation');
165  }
166 
167  // STATIC
168 
172  public static function _getIds(int $a_rbac_id, int $a_obj_id): array
173  {
174  global $DIC;
175 
176  $ilDB = $DIC['ilDB'];
177 
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');
181 
182  $res = $ilDB->query($query);
183  $ids = [];
184  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
185  $ids[] = (int) $row->meta_annotation_id;
186  }
187  return $ids;
188  }
189 }
$res
Definition: ltiservices.php:66
static _getIds(int $a_rbac_id, int $a_obj_id)
ilMDLanguageItem $description_language
setEntity(string $a_entity)
setRBACId(int $a_id)
xmlEndTag(string $tag)
Writes an endtag.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setObjId(int $a_id)
global $DIC
Definition: shib_login.php:22
setDate(string $a_date)
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)