3 declare(strict_types=1);
47 $db = $DIC->database();
50 "SELECT id, class_name, component, location, checkbox, inherit, translate, devmode, allow_link," . PHP_EOL
51 .
"allow_copy, rbac, `system`, sideblock, default_pos, grp, default_pres_pos, `export`, repository," . PHP_EOL
52 .
"workspace, administration, amet, orgunit_permissions, lti_provider, offline_handling" . PHP_EOL
53 .
"FROM il_object_def" . PHP_EOL
55 $set = $db->query($sql);
56 while ($rec = $db->fetchAssoc($set)) {
57 $this->il_object_def[$rec[
'id']] = $rec;
61 "SELECT parent, subobj, mmax" . PHP_EOL
62 .
"FROM il_object_subobj" . PHP_EOL
64 $set = $db->query($sql);
65 while ($rec = $db->fetchAssoc($set)) {
66 $parent = $rec[
'parent'];
67 $this->subobj_for_parent[$parent][] = $rec;
71 "SELECT DISTINCT(id) AS sid, parent, id, class_name, component, location, checkbox, inherit," . PHP_EOL
72 .
"translate, devmode, allow_link, allow_copy, rbac, `system`, sideblock, default_pos, grp," . PHP_EOL
73 .
"default_pres_pos, `export`, repository, workspace, administration, amet, orgunit_permissions," . PHP_EOL
74 .
"lti_provider, offline_handling" . PHP_EOL
75 .
"FROM il_object_def, il_object_subobj" . PHP_EOL
76 .
"WHERE NOT (" . $db->quoteIdentifier(
'system') .
" = 1)" . PHP_EOL
77 .
"AND NOT (sideblock = 1)" . PHP_EOL
78 .
"AND subobj = id" . PHP_EOL
80 $set = $db->query($sql);
81 while ($rec = $db->fetchAssoc($set)) {
82 $this->grouped_rep_obj_types[$rec[
'parent']][] = $rec;
86 "SELECT id, name, default_pres_pos" . PHP_EOL
87 .
"FROM il_object_group" . PHP_EOL
89 $set = $db->query($sql);
90 while ($rec = $db->fetchAssoc($set)) {
91 $this->il_object_group[$rec[
'id']] = $rec;
95 "SELECT obj_type, sub_type, amet" . PHP_EOL
96 .
"FROM il_object_sub_type" . PHP_EOL
98 $set = $db->query($sql);
99 while ($rec = $db->fetchAssoc($set)) {
100 $this->il_object_sub_type[$rec[
'obj_type']][] = $rec;
121 if (!isset(self::$instance)) {
123 $cached_obj = $global_cache->
get(
'ilCachedObjectDefinition');
125 self::$instance = $cached_obj;
127 self::$instance =
new self();
128 $global_cache->
set(
'ilCachedObjectDefinition', self::$instance);
132 return self::$instance;
136 public static function flush(): void
139 self::$instance = null;
149 if (is_array($parent)) {
150 $index = md5(serialize($parent));
151 if (isset($this->cached_results[
'subop_par'][
$index])) {
152 return $this->cached_results[
'subop_par'][
$index];
156 foreach ($parent as $p) {
157 if (isset($this->subobj_for_parent[$p]) && is_array($this->subobj_for_parent[$p])) {
158 foreach ($this->subobj_for_parent[$p] as $rec) {
164 $this->cached_results[
'subop_par'][
$index] = $return;
165 $this->changed =
true;
170 return $this->subobj_for_parent[$parent];
176 if ($this->changed && $ilGlobalCache->isActive()) {
177 $this->changed =
false;
178 $ilGlobalCache->set(
'ilCachedObjectDefinition', $this);
189 if (is_array($parent)) {
190 $index = md5(serialize($parent));
191 if (isset($this->cached_results[
'grpd_repo'][
$index])) {
192 return $this->cached_results[
'grpd_repo'][
$index];
197 foreach ($parent as $p) {
198 $s = $this->grouped_rep_obj_types[$p];
199 foreach ($s as $child) {
200 if (!in_array($child[
'sid'], $sids)) {
201 $sids[] = $child[
'sid'];
206 $this->changed =
true;
207 $this->cached_results[
'grpd_repo'][
$index] = $return;
211 return $this->grouped_rep_obj_types[$parent] ?? null;
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static ilCachedObjectDefinition $instance
set(string $key, $value, int $ttl=null)
array $il_object_sub_type
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
lookupSubObjForParent($parent)
lookupGroupedRepObj($parent)
array $grouped_rep_obj_types
static getInstance(?string $component)
ilGlobalCache $global_cache