1 <?php declare(strict_types=1);
56 if (null === $cache) {
58 (!$this->dic->user()->isAnonymous() && $this->dic->user()->getId() > 0) &&
59 $this->origin->hasCurrentUserAccessToMyStaff()
70 if (null === $cache) {
71 $cache = $this->origin->hasCurrentUserAccessToCertificates();
81 if (null === $cache) {
82 $cache = $this->origin->hasCurrentUserAccessToTalks();
92 if (null === $cache) {
93 $cache = $this->origin->hasCurrentUserAccessToCompetences();
101 static $cache = null;
103 if (null === $cache) {
104 $cache = $this->origin->hasCurrentUserAccessToCourseMemberships();
114 if (!isset($cache[$usr_id])) {
115 $cache[$usr_id] = $this->origin->hasCurrentUserAccessToUser($usr_id);
118 return $cache[$usr_id];
126 $cache[
$ref_id] = $this->origin->hasCurrentUserAccessToLearningProgressInObject($ref_id);
134 static $cache = null;
136 if (null === $cache) {
137 $cache = $this->origin->hasCurrentUserAccessToCourseLearningProgressForAtLeastOneUser();
150 $cache_key = implode(
'#', [$position_id, $operation_id, $context_id]);
152 if (!isset($cache[$cache_key])) {
153 $cache[$cache_key] = $this->origin->hasPositionDefaultPermissionForOperationInContext(
160 return $cache[$cache_key];
165 return $this->origin->countOrgusOfUserWithAtLeastOneOperation($user_id);
170 string $org_unit_operation_string,
173 return $this->origin->countOrgusOfUserWithOperationAndContext(
175 $org_unit_operation_string,
183 string $org_unit_operation_string,
185 string $tmp_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_USER_MATRIX
187 return $this->origin->getUsersForUserOperationAndContext(
189 $org_unit_operation_string,
191 $tmp_table_name_prefix
198 return $this->origin->getUsersForUserPerPosition($user_id);
204 return $this->origin->getUsersForUser($user_id, $position_id);
210 return $this->origin->getIdsForUserAndOperation(
220 return $this->origin->getIdsForPositionAndOperation(
234 return $this->origin->getIdsForPositionAndOperationAndContext(
245 string $org_unit_operation_string,
248 return $this->origin->getIlobjectsAndUsersForUserOperationAndContext(
250 $org_unit_operation_string,
258 string $org_unit_operation_string,
260 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_USER_MATRIX
262 return $this->origin->buildTempTableIlobjectsUserMatrixForUserOperationAndContext(
264 $org_unit_operation_string,
266 $temporary_table_name_prefix
272 string $org_unit_operation_string,
274 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_SPEC_PERMISSIONS
276 return $this->origin->buildTempTableIlobjectsSpecificPermissionSetForOperationAndContext(
277 $org_unit_operation_string,
279 $temporary_table_name_prefix
285 string $org_unit_operation_string,
287 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_DEFAULT_PERMISSIONS
289 return $this->origin->buildTempTableIlobjectsDefaultPermissionSetForOperationAndContext(
290 $org_unit_operation_string,
292 $temporary_table_name_prefix
298 string $org_unit_operation_string,
300 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_ORGU_DEFAULT_PERMISSIONS
302 return $this->origin->buildTempTableIlorgunitDefaultPermissionSetForOperationAndContext(
303 $org_unit_operation_string,
305 $temporary_table_name_prefix
311 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_CRS_MEMBERS,
312 array $only_courses_of_user_ids = []
314 return $this->origin->buildTempTableCourseMemberships(
315 $temporary_table_name_prefix,
316 $only_courses_of_user_ids
322 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_ORGU_MEMBERS,
323 array $only_orgus_of_user_ids = []
325 return $this->origin->buildTempTableOrguMemberships(
326 $temporary_table_name_prefix,
327 $only_orgus_of_user_ids
334 $this->origin->dropTempTable($temporary_table_name);
dropTempTable(string $temporary_table_name)
hasCurrentUserAccessToUser(int $usr_id=0)
hasCurrentUserAccessToTalks()
buildTempTableCourseMemberships(string $temporary_table_name_prefix=self::TMP_DEFAULT_TABLE_NAME_PREFIX_CRS_MEMBERS, array $only_courses_of_user_ids=[])
getIdsForPositionAndOperation(int $position_id, string $operation, bool $return_ref_id)
buildTempTableIlobjectsDefaultPermissionSetForOperationAndContext(string $org_unit_operation_string, string $context, string $temporary_table_name_prefix=self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_DEFAULT_PERMISSIONS)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
hasCurrentUserAccessToMyStaff()
hasCurrentUserAccessToCourseMemberships()
getIdsForPositionAndOperationAndContext(int $position_id, string $operation, string $context, bool $return_ref_id)
hasCurrentUserAccessToLearningProgressInObject(int $ref_id=0)
hasPositionDefaultPermissionForOperationInContext(int $position_id, int $operation_id, int $context_id)
getUsersForUser(int $user_id, ?int $position_id=null)
getIdsForUserAndOperation(int $user_id, string $operation, bool $return_ref_id=false)
Customizing of pimple-DIC for ILIAS.
countOrgusOfUserWithAtLeastOneOperation(int $user_id)
hasCurrentUserAccessToCompetences()
buildTempTableIlorgunitDefaultPermissionSetForOperationAndContext(string $org_unit_operation_string, string $context, string $temporary_table_name_prefix=self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_ORGU_DEFAULT_PERMISSIONS)
buildTempTableIlobjectsSpecificPermissionSetForOperationAndContext(string $org_unit_operation_string, string $context, string $temporary_table_name_prefix=self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_SPEC_PERMISSIONS)
hasCurrentUserAccessToCertificates()
buildTempTableIlobjectsUserMatrixForUserOperationAndContext(int $user_id, string $org_unit_operation_string, string $context, string $temporary_table_name_prefix=self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_USER_MATRIX)
getUsersForUserOperationAndContext(int $user_id, string $org_unit_operation_string, string $context, string $tmp_table_name_prefix=self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_USER_MATRIX)
__construct(Container $dic, ilMyStaffAccess $origin)
countOrgusOfUserWithOperationAndContext(int $user_id, string $org_unit_operation_string, string $context)
hasCurrentUserAccessToCourseLearningProgressForAtLeastOneUser()
__construct(Container $dic, ilPlugin $plugin)
buildTempTableOrguMemberships(string $temporary_table_name_prefix=self::TMP_DEFAULT_TABLE_NAME_PREFIX_ORGU_MEMBERS, array $only_orgus_of_user_ids=[])
getUsersForUserPerPosition(int $user_id)
getIlobjectsAndUsersForUserOperationAndContext(int $user_id, string $org_unit_operation_string, string $context)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...