18 declare(strict_types=1);
41 if (
null === $cache) {
43 (!$this->dic->user()->isAnonymous() && $this->dic->user()->getId() > 0) &&
44 $this->origin->hasCurrentUserAccessToMyStaff()
55 if (
null === $cache) {
56 $cache = $this->origin->hasCurrentUserAccessToCertificates();
66 if (
null === $cache) {
67 $cache = $this->origin->hasCurrentUserAccessToTalks();
77 if (
null === $cache) {
78 $cache = $this->origin->hasCurrentUserAccessToCompetences();
88 if (
null === $cache) {
89 $cache = $this->origin->hasCurrentUserAccessToCourseMemberships();
99 if (
null === $cache) {
100 $cache = $this->origin->hasCurrentUserAccessToStaffList();
110 if (!isset($cache[$usr_id])) {
111 $cache[$usr_id] = $this->origin->hasCurrentUserAccessToUser($usr_id);
114 return $cache[$usr_id];
122 $cache[
$ref_id] = $this->origin->hasCurrentUserAccessToLearningProgressInObject($ref_id);
130 static $cache =
null;
132 if (
null === $cache) {
133 $cache = $this->origin->hasCurrentUserAccessToCourseLearningProgressForAtLeastOneUser();
146 $cache_key = implode(
'#', [$position_id, $operation_id, $context_id]);
148 if (!isset($cache[$cache_key])) {
149 $cache[$cache_key] = $this->origin->hasPositionDefaultPermissionForOperationInContext(
156 return $cache[$cache_key];
161 return $this->origin->countOrgusOfUserWithAtLeastOneOperation($user_id);
166 string $org_unit_operation_string,
169 return $this->origin->countOrgusOfUserWithOperationAndContext(
171 $org_unit_operation_string,
179 string $org_unit_operation_string,
181 string $tmp_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_USER_MATRIX
183 return $this->origin->getUsersForUserOperationAndContext(
185 $org_unit_operation_string,
187 $tmp_table_name_prefix
194 return $this->origin->getUsersForUserPerPosition($user_id);
200 return $this->origin->getUsersForUser($user_id, $position_id);
206 return $this->origin->getIdsForUserAndOperation(
216 return $this->origin->getIdsForPositionAndOperation(
230 return $this->origin->getIdsForPositionAndOperationAndContext(
241 string $org_unit_operation_string,
244 return $this->origin->getIlobjectsAndUsersForUserOperationAndContext(
246 $org_unit_operation_string,
254 string $org_unit_operation_string,
256 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_USER_MATRIX
258 return $this->origin->buildTempTableIlobjectsUserMatrixForUserOperationAndContext(
260 $org_unit_operation_string,
262 $temporary_table_name_prefix
268 string $org_unit_operation_string,
270 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_SPEC_PERMISSIONS
272 return $this->origin->buildTempTableIlobjectsSpecificPermissionSetForOperationAndContext(
273 $org_unit_operation_string,
275 $temporary_table_name_prefix
281 string $org_unit_operation_string,
283 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_DEFAULT_PERMISSIONS
285 return $this->origin->buildTempTableIlobjectsDefaultPermissionSetForOperationAndContext(
286 $org_unit_operation_string,
288 $temporary_table_name_prefix
294 string $org_unit_operation_string,
296 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_ORGU_DEFAULT_PERMISSIONS
298 return $this->origin->buildTempTableIlorgunitDefaultPermissionSetForOperationAndContext(
299 $org_unit_operation_string,
301 $temporary_table_name_prefix
307 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_CRS_MEMBERS,
308 array $only_courses_of_user_ids = []
310 return $this->origin->buildTempTableCourseMemberships(
311 $temporary_table_name_prefix,
312 $only_courses_of_user_ids
318 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_ORGU_MEMBERS,
319 array $only_orgus_of_user_ids = []
321 return $this->origin->buildTempTableOrguMemberships(
322 $temporary_table_name_prefix,
323 $only_orgus_of_user_ids
330 $this->origin->dropTempTable($temporary_table_name);
dropTempTable(string $temporary_table_name)
hasCurrentUserAccessToUser(int $usr_id=0)
hasCurrentUserAccessToStaffList()
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)
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)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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...