ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMDLocation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 class ilMDLocation extends ilMDBase
28 {
29  private string $location = '';
30  private string $location_type = '';
31 
32  // SET/GET
33  public function setLocation(string $a_location): void
34  {
35  $this->location = $a_location;
36  }
37 
38  public function getLocation(): string
39  {
40  return $this->location;
41  }
42 
43  public function setLocationType(string $a_location_type): void
44  {
45  $this->location_type = $a_location_type;
46  }
47 
48  public function getLocationType(): string
49  {
50  return $this->location_type;
51  }
52 
53  public function save(): int
54  {
55  $fields = $this->__getFields();
56  $fields['meta_location_id'] = array('integer', $next_id = $this->db->nextId('il_meta_location'));
57 
58  if ($this->db->insert('il_meta_location', $fields)) {
59  $this->setMetaId($next_id);
60  return $this->getMetaId();
61  }
62  return 0;
63  }
64 
65  public function update(): bool
66  {
67  return $this->getMetaId() && $this->db->update(
68  'il_meta_location',
69  $this->__getFields(),
70  array("meta_location_id" => array('integer', $this->getMetaId()))
71  );
72  }
73 
74  public function delete(): bool
75  {
76  if ($this->getMetaId()) {
77  $query = "DELETE FROM il_meta_location " .
78  "WHERE meta_location_id = " . $this->db->quote($this->getMetaId(), 'integer');
79  $res = $this->db->manipulate($query);
80 
81  return true;
82  }
83  return false;
84  }
85 
89  public function __getFields(): array
90  {
91  return array(
92  'rbac_id' => array('integer', $this->getRBACId()),
93  'obj_id' => array('integer', $this->getObjId()),
94  'obj_type' => array('text', $this->getObjType()),
95  'parent_type' => array('text', $this->getParentType()),
96  'parent_id' => array('integer', $this->getParentId()),
97  'location' => array('text', $this->getLocation()),
98  'location_type' => array('text', $this->getLocationType())
99  );
100  }
101 
102  public function read(): bool
103  {
104  if ($this->getMetaId()) {
105  $query = "SELECT * FROM il_meta_location " .
106  "WHERE meta_location_id = " . $this->db->quote($this->getMetaId(), 'integer');
107 
108  $res = $this->db->query($query);
109  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
110  $this->setRBACId((int) $row->rbac_id);
111  $this->setObjId((int) $row->obj_id);
112  $this->setObjType($row->obj_type ?? '');
113  $this->setParentId((int) $row->parent_id);
114  $this->setParentType($row->parent_type);
115  $this->setLocation($row->location ?? '');
116  $this->setLocationType($row->location_type ?? '');
117  }
118  }
119  return true;
120  }
121 
122  public function toXML(ilXmlWriter $writer): void
123  {
124  $writer->xmlElement(
125  'Location',
126  array(
127  'Type' => $this->getLocationType() ?: 'LocalFile'
128  ),
129  $this->getLocation()
130  );
131  }
132 
133  // STATIC
134 
138  public static function _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type): array
139  {
140  global $DIC;
141 
142  $ilDB = $DIC->database();
143 
144  $query = "SELECT meta_location_id FROM il_meta_location " .
145  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id, 'integer') . " " .
146  "AND obj_id = " . $ilDB->quote($a_obj_id, 'integer') . " " .
147  "AND parent_id = " . $ilDB->quote($a_parent_id, 'integer') . " " .
148  "AND parent_type = " . $ilDB->quote($a_parent_type, 'text');
149 
150  $res = $ilDB->query($query);
151  $ids = [];
152  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
153  $ids[] = (int) $row->meta_location_id;
154  }
155  return $ids;
156  }
157 }
$res
Definition: ltiservices.php:66
setLocationType(string $a_location_type)
toXML(ilXmlWriter $writer)
setRBACId(int $a_id)
setObjId(int $a_id)
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
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)
setLocation(string $a_location)