37 $this->object_definition =
$GLOBALS[
'DIC'][
'objDefinition'];
43 if (!self::$instance) {
44 self::$instance =
new self();
47 return self::$instance;
52 if (!isset($this->position_settings[$a_obj_type])) {
53 throw new \InvalidArgumentException(
'Object type passed does not support position settings: ' 57 return $this->position_settings[$a_obj_type];
65 if (isset($this->object_position_cache[$a_obj_id])) {
66 return $this->object_position_cache[$a_obj_id];
72 $this->object_position_cache[$a_obj_id] =
false;
77 if (!$type_settings->isActive()) {
78 $this->object_position_cache[$a_obj_id] =
false;
82 if (!$type_settings->isChangeableForObject()) {
83 $this->object_position_cache[$a_obj_id] =
true;
89 if ($object_position->hasObjectSpecificActivation()) {
90 $this->object_position_cache[$a_obj_id] = $object_position->isActive();
92 $this->object_position_cache[$a_obj_id] = (bool) $type_settings->getActivationDefault();
95 return $this->object_position_cache[$a_obj_id];
110 if ($type_settings->isActive()) {
112 $object_setting->setActive($type_settings->getActivationDefault());
113 $object_setting->update();
119 foreach ($this->object_definition->getOrgUnitPermissionTypes() as $type) {
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilObjectDefinition $object_definition
isPositionAccessActiveForObject(int $a_obj_id)
Check of position access is activate for object.
static ilOrgUnitGlobalSettings $instance
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getObjectPositionSettingsByType(string $a_obj_type)
array $object_position_cache
Array with key obj_id => active status.
static _lookupType(int $id, bool $reference=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
saveDefaultPositionActivationStatus(int $a_obj_id)
Set and save the default activation status according to settings.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...