ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMDDescription.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
29  private string $description = '';
31 
32  // SET/GET
33  public function setDescription(string $a_description): void
34  {
35  $this->description = $a_description;
36  }
37 
38  public function getDescription(): string
39  {
40  return $this->description;
41  }
42 
43  public function setDescriptionLanguage(ilMDLanguageItem $lng_obj): void
44  {
45  $this->description_language = $lng_obj;
46  }
47 
49  {
50  return is_object($this->description_language) ? $this->description_language : null;
51  }
52 
53  public function getDescriptionLanguageCode(): string
54  {
55  return is_object($this->description_language) ? $this->description_language->getLanguageCode() : '';
56  }
57 
58  public function save(): int
59  {
60  $fields = $this->__getFields();
61  $fields['meta_description_id'] = array('integer', $next_id = $this->db->nextId('il_meta_description'));
62 
63  if ($this->db->insert('il_meta_description', $fields)) {
64  $this->setMetaId($next_id);
65  return $this->getMetaId();
66  }
67  return 0;
68  }
69 
70  public function update(): bool
71  {
72  return $this->getMetaId() && $this->db->update(
73  'il_meta_description',
74  $this->__getFields(),
75  array("meta_description_id" => array('integer', $this->getMetaId()))
76  );
77  }
78 
79  public function delete(): bool
80  {
81  if ($this->getMetaId()) {
82  $query = "DELETE FROM il_meta_description " .
83  "WHERE meta_description_id = " . $this->db->quote($this->getMetaId(), 'integer');
84  $res = $this->db->manipulate($query);
85 
86  return true;
87  }
88  return false;
89  }
90 
94  public function __getFields(): array
95  {
96  return array(
97  'rbac_id' => array('integer', $this->getRBACId()),
98  'obj_id' => array('integer', $this->getObjId()),
99  'obj_type' => array('text', $this->getObjType()),
100  'parent_type' => array('text', $this->getParentType()),
101  'parent_id' => array('integer', $this->getParentId()),
102  'description' => array('clob', $this->getDescription()),
103  'description_language' => array('text', $this->getDescriptionLanguageCode())
104  );
105  }
106 
107  public function read(): bool
108  {
109  if ($this->getMetaId()) {
110  $query = "SELECT * FROM il_meta_description " .
111  "WHERE meta_description_id = " . $this->db->quote($this->getMetaId(), 'integer');
112 
113  $res = $this->db->query($query);
114  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
115  $this->setRBACId((int) $row->rbac_id);
116  $this->setObjId((int) $row->obj_id);
117  $this->setObjType($row->obj_type ?? '');
118  $this->setParentId((int) $row->parent_id);
119  $this->setParentType($row->parent_type ?? '');
120  $this->setDescription($row->description ?? '');
121  $this->setDescriptionLanguage(new ilMDLanguageItem($row->description_language ?? ''));
122  }
123  }
124  return true;
125  }
126 
127  public function toXML(ilXmlWriter $writer): void
128  {
129  $writer->xmlElement(
130  'Description',
131  array(
132  'Language' => $this->getDescriptionLanguageCode() ?: 'en'
133  ),
134  $this->getDescription()
135  );
136  }
137 
138  // STATIC
139 
143  public static function _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type): array
144  {
145  global $DIC;
146 
147  $ilDB = $DIC->database();
148 
149  $query = "SELECT meta_description_id FROM il_meta_description " .
150  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id, ilDBConstants::T_INTEGER) . " " .
151  "AND obj_id = " . $ilDB->quote($a_obj_id, ilDBConstants::T_INTEGER) . " " .
152  "AND parent_id = " . $ilDB->quote($a_parent_id, ilDBConstants::T_INTEGER) . " " .
153  "AND parent_type = " . $ilDB->quote($a_parent_type, ilDBConstants::T_INTEGER) . " " .
154  "ORDER BY meta_description_id";
155 
156  $res = $ilDB->query($query);
157  $ids = [];
158  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
159  $ids[] = (int) $row->meta_description_id;
160  }
161  return $ids;
162  }
163 }
$res
Definition: ltiservices.php:66
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
setRBACId(int $a_id)
setDescriptionLanguage(ilMDLanguageItem $lng_obj)
toXML(ilXmlWriter $writer)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setObjId(int $a_id)
ilMDLanguageItem $description_language
setDescription(string $a_description)
global $DIC
Definition: shib_login.php:22
setParentId(int $a_id)
setParentType(string $a_parent_type)
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)