ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
|
Public Member Functions | |
__construct (ilDBInterface $db, ?ilAppEventHandler $handler=null) | |
get (int $user_id, int $position_id, int $orgu_id) | |
Get existing user assignment or create a new one. More... | |
find (int $user_id, int $position_id, int $orgu_id) | |
Find assignment for user, position and org-unit Does not create new assigment, returns null if no assignment exists. More... | |
store (ilOrgUnitUserAssignment $assignment) | |
Store assignment to db. More... | |
delete (ilOrgUnitUserAssignment $assignment) | |
Delete a single assignment Returns false if no assignment was found. More... | |
deleteByUser (int $user_id) | |
Delete all assignments for a user_id Returns false if no assignments were found. More... | |
getByUsers (array $user_ids) | |
Get assignments for one or more users. More... | |
getByPosition (int $position_id) | |
Get all assignments for a position. More... | |
getByOrgUnit (int $orgu_id) | |
Get all assignments for an org-unit. More... | |
getByUserAndPosition (int $user_id, int $position_id) | |
Get assignments for a user in a dedicated position. More... | |
getUsersByOrgUnits (array $orgu_ids) | |
Get all users for a given set of org-units. More... | |
getUsersByPosition (int $position_id) | |
Get all users with a certain position. More... | |
getUsersByOrgUnitsAndPosition (array $orgu_ids, int $position_id) | |
Get all users in a specific position for a given set of org-units. More... | |
getUsersByUserAndPosition (int $user_id, int $position_id, bool $recursive=false) | |
Get all users from org-units where the user has a certain position i.e. More... | |
getFilteredUsersByUserAndPosition (int $user_id, int $position_id, int $position_filter_id, bool $recursive=false) | |
Get all users with position $position_filter_id from those org-units, where the user has position $position_id i.e. More... | |
getOrgUnitsByUser (int $user_id) | |
Get all org-units a user is assigned to. More... | |
getOrgUnitsByUserAndPosition (int $user_id, int $position_id, bool $recursive=false) | |
Get all org-units where a user has a dedicated position. More... | |
getPositionsByUser (int $user_id) | |
Get all positions a user is assigned to. More... | |
getSuperiorsByUsers (array $user_ids) | |
Get all superiors of one or more users $user_id => [ $superior_ids ]. More... | |
getTotalRowCount (?array $filter_data, ?array $additional_parameters) | |
getRows (Table\DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters) | |
Data Fields | |
const | TABLE_NAME = 'il_orgu_ua' |
Protected Member Functions | |
getPositionRepo () | |
insert (ilOrgUnitUserAssignment $assignment) | |
update (ilOrgUnitUserAssignment $assignment) | |
raiseEvent (string $event, ilOrgUnitUserAssignment $assignment) | |
getUserDataByOrgUnitsAndPosition (array $orgu_ids, int $position_id, bool $count_only=false, ?Range $range=null, ?Order $order=null) | |
Protected Attributes | |
ilDBInterface | $db |
ilAppEventHandler | $ilAppEventHandler |
ilOrgUnitPositionDBRepository | $positionRepo |
Definition at line 25 of file class.ilOrgUnitUserAssignmentDBRepository.php.
ilOrgUnitUserAssignmentDBRepository::__construct | ( | ilDBInterface | $db, |
?ilAppEventHandler | $handler = null |
||
) |
Definition at line 32 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $db, $DIC, and $handler.
ilOrgUnitUserAssignmentDBRepository::delete | ( | ilOrgUnitUserAssignment | $assignment | ) |
Delete a single assignment Returns false if no assignment was found.
Implements OrgUnitUserAssignmentRepository.
Definition at line 146 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References raiseEvent().
ilOrgUnitUserAssignmentDBRepository::deleteByUser | ( | int | $user_id | ) |
Delete all assignments for a user_id Returns false if no assignments were found.
Implements OrgUnitUserAssignmentRepository.
Definition at line 164 of file class.ilOrgUnitUserAssignmentDBRepository.php.
Referenced by ilOrgUnitUserAssignmentQueries\deleteAllAssignmentsOfUser().
ilOrgUnitUserAssignmentDBRepository::find | ( | int | $user_id, |
int | $position_id, | ||
int | $orgu_id | ||
) |
Find assignment for user, position and org-unit Does not create new assigment, returns null if no assignment exists.
Implements OrgUnitUserAssignmentRepository.
Definition at line 79 of file class.ilOrgUnitUserAssignmentDBRepository.php.
Referenced by ilOrgUnitUserAssignmentQueries\getAssignmentOrFail().
ilOrgUnitUserAssignmentDBRepository::get | ( | int | $user_id, |
int | $position_id, | ||
int | $orgu_id | ||
) |
Get existing user assignment or create a new one.
Implements OrgUnitUserAssignmentRepository.
Definition at line 54 of file class.ilOrgUnitUserAssignmentDBRepository.php.
ilOrgUnitUserAssignmentDBRepository::getByOrgUnit | ( | int | $orgu_id | ) |
Get all assignments for an org-unit.
Implements OrgUnitUserAssignmentRepository.
Definition at line 213 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $res.
ilOrgUnitUserAssignmentDBRepository::getByPosition | ( | int | $position_id | ) |
Get all assignments for a position.
Implements OrgUnitUserAssignmentRepository.
Definition at line 197 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $res.
Referenced by ilOrgUnitUserAssignmentQueries\getUserAssignmentsOfPosition().
ilOrgUnitUserAssignmentDBRepository::getByUserAndPosition | ( | int | $user_id, |
int | $position_id | ||
) |
Get assignments for a user in a dedicated position.
Implements OrgUnitUserAssignmentRepository.
Definition at line 230 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $res.
Referenced by ilOrgUnitUserAssignmentQueries\getAssignmentsOfUserIdAndPosition().
ilOrgUnitUserAssignmentDBRepository::getByUsers | ( | array | $user_ids | ) |
Get assignments for one or more users.
int[] | $user_ids |
Implements OrgUnitUserAssignmentRepository.
Definition at line 181 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $res.
Referenced by ilOrgUnitUserAssignmentQueries\getAssignmentsOfUserId(), and ilOrgUnitUserAssignmentQueries\getAssignmentsOfUserIds().
ilOrgUnitUserAssignmentDBRepository::getFilteredUsersByUserAndPosition | ( | int | $user_id, |
int | $position_id, | ||
int | $position_filter_id, | ||
bool | $recursive = false |
||
) |
Get all users with position $position_filter_id from those org-units, where the user has position $position_id i.e.
all employees of all org-units where the user is a superior
Implements OrgUnitUserAssignmentRepository.
Definition at line 302 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $res, getOrgUnitsByUserAndPosition(), and ILIAS\Repository\int().
Referenced by ilOrgUnitUserAssignmentQueries\getUserIdsOfUsersOrgUnitsInPosition().
ilOrgUnitUserAssignmentDBRepository::getOrgUnitsByUser | ( | int | $user_id | ) |
Get all org-units a user is assigned to.
Implements OrgUnitUserAssignmentRepository.
Definition at line 318 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $res, and ILIAS\Repository\int().
Referenced by ilOrgUnitUserAssignmentQueries\getOrgUnitIdsofUser().
ilOrgUnitUserAssignmentDBRepository::getOrgUnitsByUserAndPosition | ( | int | $user_id, |
int | $position_id, | ||
bool | $recursive = false |
||
) |
Get all org-units where a user has a dedicated position.
Implements OrgUnitUserAssignmentRepository.
Definition at line 331 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $res, ilObjOrgUnitTree\_getInstance(), and ILIAS\Repository\int().
Referenced by getFilteredUsersByUserAndPosition(), ilOrgUnitUserAssignmentQueries\getOrgUnitIdsOfUsersPosition(), and getUsersByUserAndPosition().
|
protected |
Definition at line 44 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $dic, $positionRepo, and ilOrgUnitLocalDIC\dic().
Referenced by getPositionsByUser().
ilOrgUnitUserAssignmentDBRepository::getPositionsByUser | ( | int | $user_id | ) |
Get all positions a user is assigned to.
Implements OrgUnitUserAssignmentRepository.
Definition at line 356 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $res, and getPositionRepo().
Referenced by ilOrgUnitUserAssignmentQueries\getPositionsOfUserId().
ilOrgUnitUserAssignmentDBRepository::getRows | ( | Table\DataRowBuilder | $row_builder, |
array | $visible_column_ids, | ||
Range | $range, | ||
Order | $order, | ||
?array | $filter_data, | ||
?array | $additional_parameters | ||
) |
Definition at line 450 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References ilObjUserTracking\_enabledLearningProgress(), ilObjUserTracking\_enabledUserRelatedData(), and getUserDataByOrgUnitsAndPosition().
ilOrgUnitUserAssignmentDBRepository::getSuperiorsByUsers | ( | array | $user_ids | ) |
Get all superiors of one or more users $user_id => [ $superior_ids ].
int[] | $user_ids |
Implements OrgUnitUserAssignmentRepository.
Definition at line 370 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $res, ilOrgUnitPosition\CORE_POSITION_EMPLOYEE, and ilOrgUnitPosition\CORE_POSITION_SUPERIOR.
ilOrgUnitUserAssignmentDBRepository::getTotalRowCount | ( | ?array | $filter_data, |
?array | $additional_parameters | ||
) |
Definition at line 441 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References getUserDataByOrgUnitsAndPosition().
|
protected |
Definition at line 405 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References ILIAS\UI\Implementation\Component\Table\$range, $res, and ILIAS\Data\Range\unpack().
Referenced by getRows(), and getTotalRowCount().
ilOrgUnitUserAssignmentDBRepository::getUsersByOrgUnits | ( | array | $orgu_ids | ) |
Get all users for a given set of org-units.
int[] | $orgu_ids |
Implements OrgUnitUserAssignmentRepository.
Definition at line 247 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $res, and ILIAS\Repository\int().
Referenced by ilOrgUnitUserAssignmentQueries\getUserIdsOfOrgUnit(), and ilOrgUnitUserAssignmentQueries\getUserIdsOfOrgUnits().
ilOrgUnitUserAssignmentDBRepository::getUsersByOrgUnitsAndPosition | ( | array | $orgu_ids, |
int | $position_id | ||
) |
Get all users in a specific position for a given set of org-units.
int[] | $orgu_ids |
Implements OrgUnitUserAssignmentRepository.
Definition at line 273 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $res, and ILIAS\Repository\int().
Referenced by ilOrgUnitUserAssignmentQueries\getUserIdsOfOrgUnitsInPosition().
ilOrgUnitUserAssignmentDBRepository::getUsersByPosition | ( | int | $position_id | ) |
Get all users with a certain position.
Implements OrgUnitUserAssignmentRepository.
Definition at line 260 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $res, and ILIAS\Repository\int().
Referenced by ilOrgUnitUserAssignmentQueries\getUserIdsOfPosition().
ilOrgUnitUserAssignmentDBRepository::getUsersByUserAndPosition | ( | int | $user_id, |
int | $position_id, | ||
bool | $recursive = false |
||
) |
Get all users from org-units where the user has a certain position i.e.
all users from all org-units where the user is an employee
Implements OrgUnitUserAssignmentRepository.
Definition at line 287 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $res, getOrgUnitsByUserAndPosition(), and ILIAS\Repository\int().
Referenced by ilOrgUnitUserAssignmentQueries\getUserIdsOfOrgUnitsOfUsersPosition().
|
protected |
Definition at line 112 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References $id, ilOrgUnitUserAssignment\getOrguId(), ilOrgUnitUserAssignment\getPositionId(), and ilOrgUnitUserAssignment\getUserId().
Referenced by store().
|
protected |
Definition at line 396 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References ilOrgUnitUserAssignment\getOrguId(), ilOrgUnitUserAssignment\getPositionId(), ilOrgUnitUserAssignment\getUserId(), and ilAppEventHandler\raise().
Referenced by delete(), and store().
ilOrgUnitUserAssignmentDBRepository::store | ( | ilOrgUnitUserAssignment | $assignment | ) |
Store assignment to db.
Implements OrgUnitUserAssignmentRepository.
Definition at line 99 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References ilOrgUnitUserAssignment\getId(), insert(), raiseEvent(), and update().
Referenced by get().
|
protected |
Definition at line 133 of file class.ilOrgUnitUserAssignmentDBRepository.php.
References ilOrgUnitUserAssignment\getId(), ilOrgUnitUserAssignment\getOrguId(), ilOrgUnitUserAssignment\getPositionId(), and ilOrgUnitUserAssignment\getUserId().
Referenced by store().
|
protected |
Definition at line 28 of file class.ilOrgUnitUserAssignmentDBRepository.php.
Referenced by __construct().
|
protected |
Definition at line 29 of file class.ilOrgUnitUserAssignmentDBRepository.php.
|
protected |
Definition at line 30 of file class.ilOrgUnitUserAssignmentDBRepository.php.
Referenced by getPositionRepo().
const ilOrgUnitUserAssignmentDBRepository::TABLE_NAME = 'il_orgu_ua' |
Definition at line 27 of file class.ilOrgUnitUserAssignmentDBRepository.php.