19 declare(strict_types=1);
33 'ispartof' =>
'IsPartOf',
34 'haspart' =>
'HasPart',
35 'isversionof' =>
'IsVersionOf',
36 'hasversion' =>
'HasVersion',
37 'isformatof' =>
'IsFormatOf',
38 'hasformat' =>
'HasFormat',
39 'references' =>
'References',
40 'isreferencedby' =>
'IsReferencedBy',
41 'isbasedon' =>
'IsBasedOn',
42 'isbasisfor' =>
'IsBasisFor',
43 'requires' =>
'Requires',
44 'isrequiredby' =>
'IsRequiredBy' 61 if (!$a_identifier__id) {
65 $ide->setMetaId($a_identifier__id);
74 $ide->setParentType(
'meta_relation');
89 if (!$a_description_id) {
93 $des->setMetaId($a_description_id);
102 $des->setParentType(
'meta_relation');
118 case 'IsReferencedBy':
123 $this->kind = $a_kind;
139 $fields[
'meta_relation_id'] = array(
'integer', $next_id = $this->db->nextId(
'il_meta_relation'));
141 if ($this->db->insert(
'il_meta_relation', $fields)) {
150 return $this->
getMetaId() && $this->db->update(
153 array(
"meta_relation_id" => array(
'integer', $this->
getMetaId()))
157 public function delete():
bool 160 $query =
"DELETE FROM il_meta_relation " .
161 "WHERE meta_relation_id = " . $this->db->quote($this->
getMetaId(),
'integer');
162 $res = $this->db->manipulate($query);
186 $kind = (string) array_search(
188 self::KIND_TRANSLATION
192 'rbac_id' => array(
'integer', $this->
getRBACId()),
193 'obj_id' => array(
'integer', $this->
getObjId()),
194 'obj_type' => array(
'text', $this->
getObjType()),
195 'kind' => array(
'text', $kind)
202 $query =
"SELECT * FROM il_meta_relation " .
203 "WHERE meta_relation_id = " . $this->db->quote($this->
getMetaId(),
'integer');
205 $res = $this->db->query($query);
210 if (key_exists($row->kind ??
'', self::KIND_TRANSLATION)) {
211 $row->kind = self::KIND_TRANSLATION[$row->kind ??
''];
215 $this->
setObjId((
int) $row->obj_id);
217 $this->
setKind($row->kind ??
'');
226 'Kind' => $this->
getKind() ?:
'IsPartOf' 232 foreach ($ides as
$id) {
234 $ide->toXML($writer);
238 $ide->toXML($writer);
243 foreach ($dess as $id) {
245 $des->toXML($writer);
249 $des->toXML($writer);
261 public static function _getIds(
int $a_rbac_id,
int $a_obj_id): array
265 $ilDB = $DIC->database();
267 $query =
"SELECT meta_relation_id FROM il_meta_relation " .
268 "WHERE rbac_id = " .
$ilDB->quote($a_rbac_id,
'integer') .
" " .
269 "AND obj_id = " .
$ilDB->quote($a_obj_id,
'integer');
274 $ids[] = (
int) $row->meta_relation_id;
getDescription(int $a_description_id)
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
xmlEndTag(string $tag)
Writes an endtag.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
const KIND_TRANSLATION
Compatibility fix for legacy MD classes for new db tables.
getIdentifier_(int $a_identifier__id)
toXML(ilXmlWriter $writer)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
setMetaId(int $a_meta_id, bool $a_read_data=true)
static _getIds(int $a_rbac_id, int $a_obj_id)
setObjType(string $a_type)