ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMDLanguage.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 class ilMDLanguage extends ilMDBase
28 {
30 
31  public static function _lookupFirstLanguage(int $a_rbac_id, int $a_obj_id, string $a_obj_type): string
32  {
33  global $DIC;
34 
35  $ilDB = $DIC->database();
36 
37  $lang = '';
38  $query = "SELECT language FROM il_meta_language " .
39  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id, 'integer') . " " .
40  "AND obj_id = " . $ilDB->quote($a_obj_id, 'integer') . " " .
41  "AND obj_type = " . $ilDB->quote($a_obj_type, 'text') . " " .
42  "AND parent_type = 'meta_general' " .
43  "ORDER BY meta_language_id ";
44  $ilDB->setLimit(1, 0);
45  $res = $ilDB->query($query);
46  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
47  $lang = $row->language;
48  }
49  return $lang;
50  }
51 
52  // SET/GET
53  public function setLanguage(ilMDLanguageItem $lng_obj): void
54  {
55  $this->language = $lng_obj;
56  }
57 
58  public function getLanguage(): ?ilMDLanguageItem
59  {
60  return is_object($this->language) ? $this->language : null;
61  }
62 
63  public function getLanguageCode(): string
64  {
65  return is_object($this->language) ? $this->language->getLanguageCode() : '';
66  }
67 
68  public function save(): int
69  {
70  $fields = $this->__getFields();
71  $fields['meta_language_id'] = array('integer', $next_id = $this->db->nextId('il_meta_language'));
72  if ($this->db->insert('il_meta_language', $fields)) {
73  $this->setMetaId($next_id);
74  return $this->getMetaId();
75  }
76  return 0;
77  }
78 
79  public function update(): bool
80  {
81  return $this->getMetaId() && $this->db->update(
82  'il_meta_language',
83  $this->__getFields(),
84  array("meta_language_id" => array('integer', $this->getMetaId()))
85  );
86  }
87 
88  public function delete(): bool
89  {
90  if ($this->getMetaId()) {
91  $query = "DELETE FROM il_meta_language " .
92  "WHERE meta_language_id = " . $this->db->quote($this->getMetaId(), 'integer');
93  $res = $this->db->manipulate($query);
94 
95  return true;
96  }
97  return false;
98  }
99 
103  public function __getFields(): array
104  {
105  return array(
106  'rbac_id' => array('integer', $this->getRBACId()),
107  'obj_id' => array('integer', $this->getObjId()),
108  'obj_type' => array('text', $this->getObjType()),
109  'parent_type' => array('text', $this->getParentType()),
110  'parent_id' => array('integer', $this->getParentId()),
111  'language' => array('text', $this->getLanguageCode())
112  );
113  }
114 
115  public function read(): bool
116  {
117  if ($this->getMetaId()) {
118  $query = "SELECT * FROM il_meta_language " .
119  "WHERE meta_language_id = " . $this->db->quote($this->getMetaId(), 'integer');
120 
121  $res = $this->db->query($query);
122  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
123  $this->setRBACId((int) $row->rbac_id);
124  $this->setObjId((int) $row->obj_id);
125  $this->setObjType($row->obj_type ?? '');
126  $this->setParentId((int) $row->parent_id);
127  $this->setParentType($row->parent_type);
128  $this->setLanguage(new ilMDLanguageItem($row->language ?? ''));
129  }
130  }
131  return true;
132  }
133 
134  public function toXML(ilXmlWriter $writer): void
135  {
136  $writer->xmlElement(
137  'Language',
138  array(
139  'Language' => $this->getLanguageCode() ?: 'en'
140  ),
141  $this->getLanguage()
142  );
143  }
144 
145  // STATIC
146 
150  public static function _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type): array
151  {
152  global $DIC;
153 
154  $ilDB = $DIC->database();
155 
156  $query = "SELECT meta_language_id FROM il_meta_language " .
157  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id, 'integer') . " " .
158  "AND obj_id = " . $ilDB->quote($a_obj_id, 'integer') . " " .
159  "AND parent_id = " . $ilDB->quote($a_parent_id, 'integer') . " " .
160  "AND parent_type = " . $ilDB->quote($a_parent_type, 'text');
161 
162  $res = $ilDB->query($query);
163  $ids = [];
164  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
165  $ids[] = (int) $row->meta_language_id;
166  }
167  return $ids;
168  }
169 }
$res
Definition: ltiservices.php:66
static _lookupFirstLanguage(int $a_rbac_id, int $a_obj_id, string $a_obj_type)
setRBACId(int $a_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setObjId(int $a_id)
setLanguage(ilMDLanguageItem $lng_obj)
global $DIC
Definition: shib_login.php:22
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
setParentId(int $a_id)
$lang
Definition: xapiexit.php:25
toXML(ilXmlWriter $writer)
setParentType(string $a_parent_type)
ilMDLanguageItem $language
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
setMetaId(int $a_meta_id, bool $a_read_data=true)
setObjType(string $a_type)