56 if (self::$instance === null) {
57 self::$instance =
new self();
59 if (!self::isMyStaffActive()) {
60 return self::$instance;
63 self::$instance->dropTempTable(self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_SPEC_PERMISSIONS .
"_" . self::ACCESS_ENROLMENTS_ORG_UNIT_OPERATION .
"_" 64 . self::COURSE_CONTEXT);
65 self::$instance->dropTempTable(self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_DEFAULT_PERMISSIONS .
"_" . self::ACCESS_ENROLMENTS_ORG_UNIT_OPERATION
66 .
"_" . self::COURSE_CONTEXT);
67 self::$instance->dropTempTable(self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_ORGU_DEFAULT_PERMISSIONS .
"_" . self::ACCESS_ENROLMENTS_ORG_UNIT_OPERATION
68 .
"_" . self::COURSE_CONTEXT);
69 self::$instance->dropTempTable(self::TMP_DEFAULT_TABLE_NAME_PREFIX_CRS_MEMBERS .
"_user_id_" . $DIC->user()->getId());
70 self::$instance->dropTempTable(self::TMP_DEFAULT_TABLE_NAME_PREFIX_ORGU_MEMBERS .
"_user_id_" . $DIC->user()->getId());
71 self::$instance->dropTempTable(self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_USER_MATRIX .
"_" . self::ACCESS_ENROLMENTS_ORG_UNIT_OPERATION .
"_" 72 . self::COURSE_CONTEXT);
75 return self::$instance;
86 return (
bool) $DIC->settings()->get(
'enable_my_staff');
93 if (!self::isMyStaffActive()) {
124 if (!self::isMyStaffActive()) {
128 $cert_set = new \ilSetting(
"certificate");
129 if (!$cert_set->get(
"active")) {
133 if ($this->countOrgusOfUserWithOperationAndContext(
134 $DIC->user()->getId(),
143 if ($this->countOrgusOfUserWithOperationAndContext(
144 $DIC->user()->getId(),
146 self::EXERCISE_CONTEXT
153 if ($this->countOrgusOfUserWithOperationAndContext(
154 $DIC->user()->getId(),
170 if (!self::isMyStaffActive()) {
174 if ($this->countOrgusOfUserWithOperationAndContext(
175 $DIC->user()->getId(),
177 self::EMPLOYEE_TALK_CONTEXT
184 if ($this->countOrgusOfUserWithOperationAndContext(
185 $DIC->user()->getId(),
187 self::EMPLOYEE_TALK_CONTEXT
194 if ($this->countOrgusOfUserWithOperationAndContext(
195 $DIC->user()->getId(),
197 self::EMPLOYEE_TALK_CONTEXT
211 if (!self::isMyStaffActive()) {
215 $skmg_set = new \ilSkillManagementSettings();
216 if (!$skmg_set->isActivated()) {
220 if ($this->countOrgusOfUserWithOperationAndContext(
221 $DIC->user()->getId(),
230 if ($this->countOrgusOfUserWithOperationAndContext(
231 $DIC->user()->getId(),
240 if ($this->countOrgusOfUserWithOperationAndContext(
241 $DIC->user()->getId(),
250 if ($this->countOrgusOfUserWithOperationAndContext(
251 $DIC->user()->getId(),
267 if (!self::isMyStaffActive()) {
271 if ($this->countOrgusOfUserWithOperationAndContext(
272 $DIC->user()->getId(),
273 self::ACCESS_ENROLMENTS_ORG_UNIT_OPERATION,
288 if (!self::isMyStaffActive()) {
293 if (count($arr_users) > 0 && $usr_id === 0) {
297 if (count($arr_users) > 0 && in_array($usr_id, $arr_users)) {
316 $DIC->user()->getId(),
320 if (count($arr_usr_id) > 0) {
331 $q =
"SELECT COUNT(orgu_ua.orgu_id) AS 'cnt' FROM il_orgu_permissions AS perm 332 INNER JOIN il_orgu_ua AS orgu_ua ON orgu_ua.position_id = perm.position_id 333 INNER JOIN il_orgu_op_contexts AS contexts on contexts.id = perm.context_id AND contexts.context is not NULL 334 WHERE orgu_ua.user_id = " . $DIC->database()->quote(
337 ) .
" AND perm.operations is not NULL AND perm.parent_id = -1";
339 $set = $DIC->database()->query($q);
340 $rec = $DIC->database()->fetchAssoc($set);
345 public function countOrgusOfUserWithOperationAndContext(
347 string $org_unit_operation_string,
357 $q =
"SELECT COUNT(orgu_ua.orgu_id) AS cnt FROM il_orgu_permissions AS perm 358 INNER JOIN il_orgu_ua AS orgu_ua ON orgu_ua.position_id = perm.position_id 359 INNER JOIN il_orgu_op_contexts AS contexts on contexts.id = perm.context_id AND contexts.context = '" . $context .
"' 360 and orgu_ua.user_id = " . $DIC->database()->quote(
363 ) .
" AND perm.operations REGEXP '[\\\[,]\"?" 364 . $operation->getOperationId() .
"\"?[\],]' 365 WHERE perm.parent_id = -1";
367 $set = $DIC->database()->query($q);
368 $rec = $DIC->database()->fetchAssoc($set);
375 string $org_unit_operation_string,
377 string $tmp_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_USER_MATRIX
383 $org_unit_operation_string,
385 $tmp_table_name_prefix
388 $q =
'SELECT usr_id FROM ' . $tmp_table_name;
390 $user_set = $DIC->database()->query($q);
392 $arr_users = array();
394 while ($rec = $DIC->database()->fetchAssoc($user_set)) {
395 $arr_users[$rec[
'usr_id']] = $rec[
'usr_id'];
405 foreach ($user_assignments as $user_assignment) {
408 $user_assignment->getPositionId()
422 if (isset($this->users_for_user[$user_id]) && $position_id === null) {
423 return $this->users_for_user[$user_id];
427 self::TMP_DEFAULT_TABLE_NAME_PREFIX_ORGU_MEMBERS,
431 $position_limitation =
'';
432 if (!is_null($position_id)) {
433 $position_limitation =
' AND orgu_ua_current_user.position_id = ' . $position_id;
436 $q =
"SELECT " . $tmp_orgu_members .
".user_id AS usr_id 438 " . $tmp_orgu_members .
" 439 INNER JOIN il_orgu_ua AS orgu_ua_current_user on orgu_ua_current_user.user_id = " . $DIC->database()->quote(
443 INNER JOIN il_orgu_authority AS auth ON auth.position_id = orgu_ua_current_user.position_id " . $position_limitation .
" 446 /* Identische OrgUnit wie Current User; Nicht Rekursiv; Fixe Position */ 447 (orgu_ua_current_user.orgu_id = " . $tmp_orgu_members .
".orgu_id AND auth.scope = 1 448 AND auth.over = " . $tmp_orgu_members .
".user_position_id AND auth.over <> -1 451 /* Identische OrgUnit wie Current User; Nicht Rekursiv; Position egal */ 452 (orgu_ua_current_user.orgu_id = " . $tmp_orgu_members .
".orgu_id AND auth.scope = 1 AND auth.over = -1) 454 /* Kinder OrgUnit wie Current User */ 457 " . $tmp_orgu_members .
".orgu_id = orgu_ua_current_user.orgu_id OR 458 " . $tmp_orgu_members .
".tree_path LIKE CONCAT(\"%.\",orgu_ua_current_user.orgu_id ,\".%\") 460 " . $tmp_orgu_members .
".tree_path LIKE CONCAT(\"%.\",orgu_ua_current_user.orgu_id ) 466 /* Gleiche Position */ 467 auth.over = " . $tmp_orgu_members .
".user_position_id AND auth.over <> -1 480 $user_set = $DIC->database()->query($q);
482 $arr_users = array();
484 while ($rec = $DIC->database()->fetchAssoc($user_set)) {
485 $arr_users[$rec[
'usr_id']] = $rec[
'usr_id'];
488 if ($position_id === null) {
489 $this->users_for_user[$user_id] = $arr_users;
499 foreach ($user_assignments as $user_assignment) {
501 $user_assignment->getPositionId(),
505 if (count($ref_ids) > 0) {
506 $ids = array_merge($ids, $ref_ids);
516 $ref_ids = $this->getIdsForPositionAndOperationAndContext(
522 if (count($ref_ids) > 0) {
523 $ids = array_merge($ids, $ref_ids);
535 public function getIdsForPositionAndOperationAndContext(
547 if (is_null($operation_object)) {
551 $operation_id = $operation_object->getOperationId();
554 $query =
"select " . ($return_ref_id ?
"object_reference.ref_id" :
"object_data.obj_id") .
" from object_data " .
555 "inner join object_reference on object_reference.obj_id = object_data.obj_id " .
556 "where type = '" . $context .
"' " .
557 "AND object_reference.ref_id not in " .
558 " (SELECT parent_id FROM il_orgu_permissions " .
559 " where position_id = " . $position_id .
" and context_id = " . $context_id .
" and operations NOT REGEXP '[\\\[,]\"?" . $operation_id .
"\"?[\],]' and parent_id <> -1)";
563 "SELECT parent_id as ref_id FROM il_orgu_permissions " 565 "SELECT obj_id FROM il_orgu_permissions INNER JOIN object_reference ON object_reference.ref_id = il_orgu_permissions.parent_id ";
566 $query .=
" where position_id = " . $position_id .
" and context_id = " . $context_id .
" and operations REGEXP '[\\\[,]\"?" . $operation_id .
"\"?[\],]' and parent_id <> -1";
569 return array_map(
function ($item) use ($return_ref_id) {
570 return $return_ref_id ? $item[
'ref_id'] : $item[
'obj_id'];
571 }, $DIC->database()->fetchAll($DIC->database()->query(
$query)));
580 $res = $DIC->database()->query(
"SELECT * FROM il_orgu_permissions " .
581 " WHERE context_id = " . $context_id .
" " .
582 "AND operations REGEXP '[\\\[,]\"?" . $operation_id .
"\"?[\],]' " .
583 "AND position_id = " . $position_id .
" " .
584 "AND parent_id = -1");
586 return (
bool) $DIC->database()->numRows(
$res) > 0;
591 string $org_unit_operation_string,
600 $tmp_table_name =
'tmp_ilobj_user_matrix_' . $operation->getOperationId();
604 $org_unit_operation_string,
609 $q =
'SELECT * FROM ' . $tmp_table_name;
611 $user_set = $DIC->database()->query($q);
613 $arr_user_obj = array();
615 while ($rec = $DIC->database()->fetchAssoc($user_set)) {
616 $arr_user_obj[] = $rec;
619 return $arr_user_obj;
624 string $org_unit_operation_string,
626 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_USER_MATRIX
630 $temporary_table_name = $temporary_table_name_prefix .
"_" . $org_unit_operation_string .
"_" .
$context;
639 $org_unit_operation_string,
641 self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_SPEC_PERMISSIONS
644 $tmp_table_objects_default_perimissions = $this->buildTempTableIlobjectsDefaultPermissionSetForOperationAndContext(
645 $org_unit_operation_string,
647 self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_DEFAULT_PERMISSIONS
650 $tmp_table_orgunit_default_perimissions = $this->buildTempTableIlorgunitDefaultPermissionSetForOperationAndContext(
651 $org_unit_operation_string,
653 self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_ORGU_DEFAULT_PERMISSIONS
657 self::TMP_DEFAULT_TABLE_NAME_PREFIX_CRS_MEMBERS,
662 self::TMP_DEFAULT_TABLE_NAME_PREFIX_ORGU_MEMBERS,
667 'tmp_orgu_members_path',
671 if ($temporary_table_name != self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_USER_MATRIX .
"_" . self::ACCESS_ENROLMENTS_ORG_UNIT_OPERATION .
"_" 672 . self::COURSE_CONTEXT
677 $q =
"CREATE TEMPORARY TABLE IF NOT EXISTS " . $temporary_table_name .
" AS ( 678 SELECT DISTINCT user_perm_matrix.perm_for_ref_id, user_perm_matrix.usr_id FROM 680 SELECT crs.*," . $tmp_table_course_members .
".ref_id," . $tmp_table_course_members .
".usr_id FROM 682 SELECT * FROM " . $tmp_table_objects_specific_perimissions .
" 684 SELECT * FROM " . $tmp_table_objects_default_perimissions .
" 686 INNER JOIN " . $tmp_table_course_members .
" on " . $tmp_table_course_members .
".ref_id = crs.perm_for_ref_id 689 " . $tmp_table_course_members .
".orgu_id = crs.perm_for_orgu_id AND " . $tmp_table_course_members .
".position_id = crs.perm_over_user_with_position AND perm_orgu_scope = 1 691 or perm_orgu_scope = 2 694 SELECT " . $tmp_table_orgunit_default_perimissions .
".*, " . $tmp_table_orgu_members .
".orgu_id AS ref_id, " 695 . $tmp_table_orgu_members .
".user_id FROM " . $tmp_table_orgunit_default_perimissions .
" 696 INNER JOIN " . $tmp_table_orgu_members .
" on " . $tmp_table_orgu_members .
".orgu_id = " 697 . $tmp_table_orgunit_default_perimissions .
".perm_for_ref_id 700 " . $tmp_table_orgu_members .
".orgu_id = " . $tmp_table_orgunit_default_perimissions .
".perm_for_orgu_id AND " 701 . $tmp_table_orgu_members .
".user_position_id = " . $tmp_table_orgunit_default_perimissions .
".perm_over_user_with_position AND perm_orgu_scope = 1 703 or perm_orgu_scope = 2 706 ) AS user_perm_matrix 707 INNER JOIN " . $tmp_table_orgu_member_path .
" AS path on path.user_id = user_perm_matrix.usr_id 709 INNER JOIN il_orgu_ua AS orgu_ua_current_user on orgu_ua_current_user.user_id = " . $DIC->database()->quote(
713 INNER JOIN il_orgu_permissions AS perm on perm.position_id = orgu_ua_current_user.position_id AND perm.parent_id = -1 714 INNER JOIN il_orgu_op_contexts AS contexts on contexts.id = perm.context_id AND contexts.context = '$context' 715 and perm.operations REGEXP '[\\\[,]\"?" . $operation->getOperationId() .
"\"?[\],]' 719 /* Identische OrgUnit wie Current User; Nicht Rekursiv; Fixe Position */ 720 (orgu_ua_current_user.orgu_id = user_perm_matrix.perm_for_orgu_id AND user_perm_matrix.perm_orgu_scope = 1 721 AND orgu_ua_current_user.position_id = user_perm_matrix.perm_for_position_id AND user_perm_matrix.perm_over_user_with_position <> -1 724 /* Identische OrgUnit wie Current User; Nicht Rekursiv; Position egal */ 725 (orgu_ua_current_user.orgu_id = user_perm_matrix.perm_for_orgu_id AND user_perm_matrix.perm_orgu_scope = 1 AND user_perm_matrix.perm_over_user_with_position = -1) 727 /* Kinder OrgUnit wie Current User */ 729 orgu_ua_current_user.orgu_id = user_perm_matrix.perm_for_orgu_id 732 path.orgu_id = user_perm_matrix.perm_for_orgu_id OR 733 path.tree_path LIKE CONCAT(\"%.\",user_perm_matrix.perm_for_orgu_id ,\".%\") 735 path.tree_path LIKE CONCAT(\"%.\",user_perm_matrix.perm_for_orgu_id ) 741 /* Gleiche Position */ 742 orgu_ua_current_user.position_id = user_perm_matrix.perm_for_position_id AND user_perm_matrix.perm_over_user_with_position <> -1 747 user_perm_matrix.perm_over_user_with_position = -1 750 AND user_perm_matrix.perm_orgu_scope = 2 756 $DIC->database()->manipulate($q);
758 return $temporary_table_name;
762 string $org_unit_operation_string,
764 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_SPEC_PERMISSIONS
768 $temporary_table_name = $temporary_table_name_prefix .
"_" . $org_unit_operation_string .
"_" .
$context;
773 if ($temporary_table_name != self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_SPEC_PERMISSIONS .
"_" . self::ACCESS_ENROLMENTS_ORG_UNIT_OPERATION .
"_" 774 . self::COURSE_CONTEXT
779 $q =
"CREATE TEMPORARY TABLE IF NOT EXISTS " . $temporary_table_name .
" 780 (INDEX i1 (perm_for_ref_id), INDEX i2 (perm_for_orgu_id), INDEX i3 (perm_orgu_scope), INDEX i4 (perm_for_position_id), INDEX i5 (perm_over_user_with_position)) 783 obj_ref.ref_id AS perm_for_ref_id, 784 orgu_ua.orgu_id AS perm_for_orgu_id, 785 auth.scope AS perm_orgu_scope, 786 orgu_ua.position_id AS perm_for_position_id, 787 auth.over AS perm_over_user_with_position 789 il_orgu_permissions AS perm 790 INNER JOIN il_orgu_ua AS orgu_ua ON orgu_ua.position_id = perm.position_id 791 INNER JOIN il_orgu_authority AS auth ON auth.position_id = orgu_ua.position_id AND orgu_ua.user_id = " .
$GLOBALS[
'DIC']->user()
793 INNER JOIN object_reference AS obj_ref ON obj_ref.ref_id = perm.parent_id 794 INNER JOIN object_data AS obj ON obj.obj_id = obj_ref.obj_id AND obj.type = '$context' 795 INNER JOIN il_orgu_op_contexts AS contexts on contexts.id = perm.context_id AND contexts.context = '$context' 797 perm.operations REGEXP '[\\\[,]\"?" . $operation->getOperationId() .
"\"?[\],]' 800 $DIC->database()->manipulate($q);
802 return $temporary_table_name;
805 public function buildTempTableIlobjectsDefaultPermissionSetForOperationAndContext(
806 string $org_unit_operation_string,
808 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_DEFAULT_PERMISSIONS
812 $temporary_table_name = $temporary_table_name_prefix .
"_" . $org_unit_operation_string .
"_" .
$context;
819 if ($temporary_table_name != self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_DEFAULT_PERMISSIONS .
"_" . self::ACCESS_ENROLMENTS_ORG_UNIT_OPERATION .
"_" 820 . self::COURSE_CONTEXT
825 $q =
"CREATE TEMPORARY TABLE IF NOT EXISTS " . $temporary_table_name .
" 826 (INDEX i1 (perm_for_ref_id), INDEX i2 (perm_for_orgu_id), INDEX i3 (perm_orgu_scope), INDEX i4 (perm_for_position_id),INDEX i5 (perm_over_user_with_position)) 829 obj_ref.ref_id AS perm_for_ref_id, 830 orgu_ua.orgu_id AS perm_for_orgu_id, 831 auth.scope AS perm_orgu_scope, 832 orgu_ua.position_id AS perm_for_position_id, 833 auth.over AS perm_over_user_with_position 836 INNER JOIN object_reference AS obj_ref ON obj_ref.obj_id = obj.obj_id 837 INNER JOIN il_orgu_permissions AS perm ON perm.operations REGEXP '[\\\[,]\"?" . $operation->getOperationId() .
"\"?[\],]' AND perm.parent_id = -1 838 INNER JOIN il_orgu_op_contexts AS contexts on contexts.id = perm.context_id AND contexts.context = '" . $context .
"' 839 INNER JOIN il_orgu_ua AS orgu_ua ON orgu_ua.position_id = perm.position_id AND orgu_ua.user_id = " .
$GLOBALS[
'DIC']->user()
841 INNER JOIN il_orgu_authority AS auth ON auth.position_id = orgu_ua.position_id 844 obj.type = '" . $context .
"' 845 AND (obj_ref.ref_id , orgu_ua.position_id) 848 perm.parent_id, orgu_ua.position_id 850 il_orgu_permissions AS perm 851 INNER JOIN il_orgu_ua AS orgu_ua ON orgu_ua.position_id = perm.position_id 852 INNER JOIN il_orgu_op_contexts AS contexts on contexts.id = perm.context_id AND contexts.context = '" . $context .
"' 853 WHERE perm.parent_id <> -1) 856 $DIC->database()->manipulate($q);
858 return $temporary_table_name;
867 public function buildTempTableIlorgunitDefaultPermissionSetForOperationAndContext(
868 string $org_unit_operation_string,
870 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_ORGU_DEFAULT_PERMISSIONS
874 $temporary_table_name = $temporary_table_name_prefix .
"_" . $org_unit_operation_string .
"_" .
$context;
880 if ($temporary_table_name != self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_ORGU_DEFAULT_PERMISSIONS .
"_" . self::ACCESS_ENROLMENTS_ORG_UNIT_OPERATION .
"_" 881 . self::COURSE_CONTEXT
886 $q =
"CREATE TEMPORARY TABLE IF NOT EXISTS " . $temporary_table_name .
" 887 (INDEX i1 (perm_for_ref_id), INDEX i2 (perm_for_orgu_id), INDEX i3 (perm_orgu_scope), INDEX i4 (perm_for_position_id), INDEX i5 (perm_over_user_with_position)) 890 orgu_ua.orgu_id AS perm_for_ref_id, /* Table has to be identical to the other Permission For Operation And Context-Tables! */ 891 orgu_ua.orgu_id AS perm_for_orgu_id, 892 auth.scope AS perm_orgu_scope, 893 orgu_ua.position_id AS perm_for_position_id, 894 auth.over AS perm_over_user_with_position 896 il_orgu_permissions AS perm 897 INNER JOIN il_orgu_ua AS orgu_ua ON orgu_ua.position_id = perm.position_id AND perm.parent_id = -1 AND orgu_ua.user_id = " 898 .
$GLOBALS[
'DIC']->user()->getId() .
" 899 INNER JOIN il_orgu_authority AS auth ON auth.position_id = orgu_ua.position_id 900 INNER JOIN il_orgu_op_contexts AS contexts on contexts.id = perm.context_id AND contexts.context = '" . $context .
"' 902 perm.operations REGEXP '[\\\[,]\"?" . $operation->getOperationId() .
"\"?[\],]' 905 $DIC->database()->manipulate($q);
907 return $temporary_table_name;
911 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_CRS_MEMBERS,
912 array $only_courses_of_user_ids = array()
916 $temporary_table_name = $temporary_table_name_prefix .
"_user_id_" . $DIC->user()->getId();
918 if ($temporary_table_name != self::TMP_DEFAULT_TABLE_NAME_PREFIX_CRS_MEMBERS .
"_user_id_" . $DIC->user()->getId()
919 || count($only_courses_of_user_ids) > 0
924 $q =
"CREATE TEMPORARY TABLE IF NOT EXISTS " . $temporary_table_name .
" 925 (INDEX i1(ref_id), INDEX i2 (usr_id), INDEX i3 (position_id), INDEX i4 (orgu_id)) 927 SELECT crs_members_crs_ref.ref_id, crs_members.usr_id, orgu_ua.position_id, orgu_ua.orgu_id 929 SELECT obj_id, usr_id FROM obj_members WHERE admin > 0 OR tutor > 0 OR member > 0 930 AND " . $DIC->database()->in(
931 'obj_members.usr_id',
932 $only_courses_of_user_ids,
937 SELECT obj_id, usr_id FROM crs_waiting_list 938 WHERE " . $DIC->database()->in(
939 'crs_waiting_list.usr_id',
940 $only_courses_of_user_ids,
945 SELECT obj_id, usr_id FROM il_subscribers 946 WHERE " . $DIC->database()->in(
947 'il_subscribers.usr_id',
948 $only_courses_of_user_ids,
953 INNER JOIN object_reference AS crs_members_crs_ref on crs_members_crs_ref.obj_id = crs_members.obj_id 954 INNER JOIN il_orgu_ua AS orgu_ua on orgu_ua.user_id = crs_members.usr_id 957 $DIC->database()->manipulate($q);
959 return $temporary_table_name;
963 string $temporary_table_name_prefix = self::TMP_DEFAULT_TABLE_NAME_PREFIX_ORGU_MEMBERS,
964 array $only_orgus_of_user_ids = array()
968 $temporary_table_name = $temporary_table_name_prefix .
"_user_id_" . $DIC->user()->getId();
970 if ($temporary_table_name != self::TMP_DEFAULT_TABLE_NAME_PREFIX_ORGU_MEMBERS .
"_user_id_" . $DIC->user()->getId()
971 || count($only_orgus_of_user_ids) > 0
976 $q =
"CREATE TEMPORARY TABLE IF NOT EXISTS " . $temporary_table_name .
" 977 (INDEX i1(orgu_id), INDEX i2 (tree_path(255)), INDEX i3 (tree_child), INDEX i4 (tree_parent), INDEX i5 (tree_lft), INDEX i6 (tree_rgt), INDEX i7 (user_position_id), INDEX i8 (user_id)) 979 SELECT orgu_ua.orgu_id AS orgu_id, 980 tree_orgu.path AS tree_path, 981 tree_orgu.child AS tree_child, 982 tree_orgu.parent AS tree_parent, 983 tree_orgu.lft AS tree_lft, 984 tree_orgu.rgt AS tree_rgt, 985 orgu_ua.position_id AS user_position_id, 986 orgu_ua.user_id AS user_id 988 il_orgu_ua AS orgu_ua 989 INNER JOIN object_reference AS obj_ref on obj_ref.ref_id = orgu_ua.orgu_id AND obj_ref.deleted is null 990 LEFT JOIN tree AS tree_orgu ON tree_orgu.child = orgu_ua.orgu_id";
992 if (count($only_orgus_of_user_ids) > 0) {
993 $q .=
" WHERE " . $DIC->database()->in(
'orgu_ua.user_id', $only_orgus_of_user_ids,
false,
'integer') .
" ";
998 $DIC->database()->manipulate($q);
1000 return $temporary_table_name;
1007 $q =
"DROP TABLE IF EXISTS " . $temporary_table_name;
1008 $DIC->database()->manipulate($q);
static findByOperationString(string $operation_string, string $context_name)
getIdsForPositionAndOperation(int $position_id, string $operation, bool $return_ref_id)
const OP_READ_EMPLOYEE_TALK
getUsersForUser(int $user_id, ?int $position_id=null)
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)
hasPositionDefaultPermissionForOperationInContext(int $position_id, int $operation_id, int $context_id)
static findByName(string $context_name)
getIdsForUserAndOperation(int $user_id, string $operation, bool $return_ref_id=false)
hasCurrentUserAccessToTalks()
getUsersForUserPerPosition(int $user_id)
hasCurrentUserAccessToCourseLearningProgressForAtLeastOneUser()
const TMP_DEFAULT_TABLE_NAME_PREFIX_IL_ORGU_DEFAULT_PERMISSIONS
const OP_READ_LEARNING_PROGRESS
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)
hasCurrentUserAccessToLearningProgressInObject(int $ref_id=0)
buildTempTableOrguMemberships(string $temporary_table_name_prefix=self::TMP_DEFAULT_TABLE_NAME_PREFIX_ORGU_MEMBERS, array $only_orgus_of_user_ids=array())
const TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_DEFAULT_PERMISSIONS
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
getIlobjectsAndUsersForUserOperationAndContext(int $user_id, string $org_unit_operation_string, string $context)
hasCurrentUserAccessToCourseMemberships()
countOrgusOfUserWithAtLeastOneOperation(int $user_id)
const TMP_DEFAULT_TABLE_NAME_PREFIX_CRS_MEMBERS
buildTempTableIlobjectsSpecificPermissionSetForOperationAndContext(string $org_unit_operation_string, string $context, string $temporary_table_name_prefix=self::TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_SPEC_PERMISSIONS)
const TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_USER_MATRIX
hasCurrentUserAccessToCompetences()
const ACCESS_ENROLMENTS_ORG_UNIT_OPERATION
const OP_VIEW_COMPETENCES
const OP_ACCESS_ENROLMENTS
hasCurrentUserAccessToCertificates()
const TMP_DEFAULT_TABLE_NAME_PREFIX_ORGU_MEMBERS
const OP_VIEW_CERTIFICATES
buildTempTableCourseMemberships(string $temporary_table_name_prefix=self::TMP_DEFAULT_TABLE_NAME_PREFIX_CRS_MEMBERS, array $only_courses_of_user_ids=array())
hasCurrentUserAccessToUser(int $usr_id=0)
hasCurrentUserAccessToMyStaff()
dropTempTable(string $temporary_table_name)
static array $available_contexts
const EMPLOYEE_TALK_CONTEXT
const OP_EDIT_EMPLOYEE_TALK
const OP_CREATE_EMPLOYEE_TALK
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const TMP_DEFAULT_TABLE_NAME_PREFIX_IL_OBJ_SPEC_PERMISSIONS