19 declare(strict_types=1);
35 $this->location = $a_location;
45 $this->location_type = $a_location_type;
56 $fields[
'meta_location_id'] = array(
'integer', $next_id = $this->db->nextId(
'il_meta_location'));
58 if ($this->db->insert(
'il_meta_location', $fields)) {
67 return $this->
getMetaId() && $this->db->update(
70 array(
"meta_location_id" => array(
'integer', $this->
getMetaId()))
74 public function delete():
bool 77 $query =
"DELETE FROM il_meta_location " .
78 "WHERE meta_location_id = " . $this->db->quote($this->
getMetaId(),
'integer');
79 $res = $this->db->manipulate($query);
92 'rbac_id' => array(
'integer', $this->
getRBACId()),
93 'obj_id' => array(
'integer', $this->
getObjId()),
94 'obj_type' => array(
'text', $this->
getObjType()),
96 'parent_id' => array(
'integer', $this->
getParentId()),
105 $query =
"SELECT * FROM il_meta_location " .
106 "WHERE meta_location_id = " . $this->db->quote($this->
getMetaId(),
'integer');
108 $res = $this->db->query($query);
111 $this->
setObjId((
int) $row->obj_id);
138 public static function _getIds(
int $a_rbac_id,
int $a_obj_id,
int $a_parent_id,
string $a_parent_type): array
142 $ilDB = $DIC->database();
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');
153 $ids[] = (
int) $row->meta_location_id;
setLocationType(string $a_location_type)
toXML(ilXmlWriter $writer)
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
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)