ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository Class Reference
+ Collaboration diagram for OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository:

Public Member Functions

 findOrCreateAssignment (int $user_id, int $position_id, int $orgu_id)
 
 findAllUserAssingmentsByUserIds (array $arr_user_ids)
 
 getEmplSuperiorList (array $arr_empl_user_ids)
 
 getPositionsOfUserId (int $user_id)
 
 getAssignmentOrFail (int $user_id, int $position_id, int $orgu_id)
 
 getAssignmentsOfUserId (int $user_id)
 
 getUserIdsOfOrgUnit (int $orgunit_ref_id)
 
 getUserIdsOfOrgUnits (array $orgunit_ref_id)
 
 getUserIdsOfOrgUnitsOfUsersPosition (int $position_id, int $user_id, bool $recursive=false)
 
 getUserIdsOfOrgUnitsInPosition (array $orgu_ids, int $position_id)
 
 getUserIdsOfUsersOrgUnitsInPosition (int $user_id, array $users_position_id, int $position_id, bool $recursive=false)
 
 getOrgUnitIdsOfUsersPosition (int $position_id, int $user_id, bool $recursive=false)
 
 getUserIdsOfPosition (int $position_id)
 
 getUserAssignmentsOfPosition (int $position_id)
 
 deleteAllAssignmentsOfUser (int $user_id)
 

Static Public Member Functions

static getInstance ()
 

Static Protected Attributes

static self $instance
 

Detailed Description

Definition at line 26 of file class.ilOrgUnitUserAssignmentRepository.php.

Member Function Documentation

◆ deleteAllAssignmentsOfUser()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::deleteAllAssignmentsOfUser ( int  $user_id)

Definition at line 250 of file class.ilOrgUnitUserAssignmentRepository.php.

References $DIC.

250  : void
251  {
252  global $DIC;
253  $q = "DELETE FROM il_orgu_ua WHERE user_id = " . $DIC->database()->quote($user_id, "integer");
254  $DIC->database()->manipulate($q);
255  }
global $DIC
Definition: feed.php:28

◆ findAllUserAssingmentsByUserIds()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::findAllUserAssingmentsByUserIds ( array  $arr_user_ids)
Parameters
$arr_user_ids[]
Returns
ilOrgUnitUserAssignment[][] [user_id][][$user_assignment]

Definition at line 61 of file class.ilOrgUnitUserAssignmentRepository.php.

References ActiveRecord\where().

61  : array
62  {
63  $user_assignment_list = ilOrgUnitUserAssignment::where(['user_id' => $arr_user_ids], 'IN')->get();
64 
65  $user_assignment_list_by_user = [];
66  foreach ($user_assignment_list as $user_assignment) {
67  $user_assignment_list_by_user[$user_assignment->getUserId()][] = $user_assignment;
68  }
69 
70  return $user_assignment_list_by_user;
71  }
static where($where, $operator=null)
+ Here is the call graph for this function:

◆ findOrCreateAssignment()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::findOrCreateAssignment ( int  $user_id,
int  $position_id,
int  $orgu_id 
)

Definition at line 39 of file class.ilOrgUnitUserAssignmentRepository.php.

References ActiveRecord\where().

40  {
41  $user_assignment = ilOrgUnitUserAssignment::where(array(
42  'user_id' => $user_id,
43  'position_id' => $position_id,
44  'orgu_id' => $orgu_id,
45  ))->first();
46  if (!$user_assignment) {
47  $user_assignment = new ilOrgUnitUserAssignment();
48  $user_assignment->setPositionId($position_id);
49  $user_assignment->setUserId($user_id);
50  $user_assignment->setOrguId($orgu_id);
51  $user_assignment->create();
52  }
53 
54  return $user_assignment;
55  }
static where($where, $operator=null)
+ Here is the call graph for this function:

◆ getAssignmentOrFail()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::getAssignmentOrFail ( int  $user_id,
int  $position_id,
int  $orgu_id 
)
Exceptions
ilException

Definition at line 123 of file class.ilOrgUnitUserAssignmentRepository.php.

References ActiveRecord\where().

124  {
126  'user_id' => $user_id,
127  'position_id' => $position_id,
128  'orgu_id' => $orgu_id,
129  ])->first();
130  if (!$ua) {
131  throw new ilException('UserAssignement not found');
132  }
133 
134  assert($ua instanceof ilOrgUnitUserAssignment);
135  return $ua;
136  }
static where($where, $operator=null)
+ Here is the call graph for this function:

◆ getAssignmentsOfUserId()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::getAssignmentsOfUserId ( int  $user_id)
Returns
ilOrgUnitUserAssignment[]

Definition at line 141 of file class.ilOrgUnitUserAssignmentRepository.php.

References ActiveRecord\where().

Referenced by OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository\getPositionsOfUserId().

141  : array
142  {
143  return ilOrgUnitUserAssignment::where(['user_id' => $user_id])->get();
144  }
static where($where, $operator=null)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getEmplSuperiorList()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::getEmplSuperiorList ( array  $arr_empl_user_ids)
Parameters
int[]$arr_empl_user_ids
Returns
int[][] [user_id as an employee][][ user_id as a superior]

Definition at line 77 of file class.ilOrgUnitUserAssignmentRepository.php.

References $data, $DIC, ilOrgUnitPosition\CORE_POSITION_EMPLOYEE, and ilOrgUnitPosition\CORE_POSITION_SUPERIOR.

77  : array
78  {
79  global $DIC;
80 
81  $sql = "SELECT
82  orgu_ua.orgu_id AS orgu_id,
83  orgu_ua.user_id AS empl,
84  orgu_ua2.user_id as sup
85  FROM
86  il_orgu_ua as orgu_ua,
87  il_orgu_ua as orgu_ua2
88  WHERE
89  orgu_ua.orgu_id = orgu_ua2.orgu_id
90  and orgu_ua.user_id <> orgu_ua2.user_id
91  and orgu_ua.position_id = " . ilOrgUnitPosition::CORE_POSITION_EMPLOYEE . "
92  and orgu_ua2.position_id = " . ilOrgUnitPosition::CORE_POSITION_SUPERIOR . "
93  AND " . $DIC->database()->in('orgu_ua.user_id', $arr_empl_user_ids, false, 'integer');
94 
95  $st = $DIC->database()->query($sql);
96 
97  $empl_id__sup_ids = [];
98  while ($data = $DIC->database()->fetchAssoc($st)) {
99  $empl_id__sup_ids[$data['empl']][] = $data['sup'];
100  }
101  $this->arr_empl_user_ids = $empl_id__sup_ids;
102 
103  return $empl_id__sup_ids;
104  }
global $DIC
Definition: feed.php:28

◆ getInstance()

static OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::getInstance ( )
static

Definition at line 30 of file class.ilOrgUnitUserAssignmentRepository.php.

Referenced by ilPRGAssignmentDBRepository\interimOrguLookup().

30  : self
31  {
32  if (!isset(self::$instance)) {
33  self::$instance = new self();
34  }
35 
36  return self::$instance;
37  }
+ Here is the caller graph for this function:

◆ getOrgUnitIdsOfUsersPosition()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::getOrgUnitIdsOfUsersPosition ( int  $position_id,
int  $user_id,
bool  $recursive = false 
)
Returns
int[]

Definition at line 207 of file class.ilOrgUnitUserAssignmentRepository.php.

References ilObjOrgUnitTree\_getInstance(), and ActiveRecord\where().

Referenced by OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository\getUserIdsOfOrgUnitsOfUsersPosition(), and OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository\getUserIdsOfUsersOrgUnitsInPosition().

211  : array {
212  $orgu_ids = ilOrgUnitUserAssignment::where([
213  'position_id' => $position_id,
214  'user_id' => $user_id,
215  ])->getArray(null, 'orgu_id');
216 
217  if (!$recursive) {
218  return $orgu_ids;
219  }
220 
221  $recursive_orgu_ids = [];
223  foreach ($orgu_ids as $orgu_id) {
224  $recursive_orgu_ids += $tree->getAllChildren($orgu_id);
225  }
226 
227  return $recursive_orgu_ids;
228  }
static where($where, $operator=null)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getPositionsOfUserId()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::getPositionsOfUserId ( int  $user_id)
Parameters
int$user_id
Returns
ilOrgUnitPosition[]

Definition at line 110 of file class.ilOrgUnitUserAssignmentRepository.php.

References OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository\getAssignmentsOfUserId().

110  : array
111  {
112  $positions = [];
113  foreach ($this->getAssignmentsOfUserId($user_id) as $assignment) {
114  $positions[] = ilOrgUnitPosition::find($assignment->getPositionId());
115  }
116 
117  return $positions;
118  }
+ Here is the call graph for this function:

◆ getUserAssignmentsOfPosition()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::getUserAssignmentsOfPosition ( int  $position_id)
Returns
ilOrgUnitUserAssignment[]

Definition at line 243 of file class.ilOrgUnitUserAssignmentRepository.php.

References ActiveRecord\where().

243  : array
244  {
246  'position_id' => $position_id,
247  ])->get();
248  }
static where($where, $operator=null)
+ Here is the call graph for this function:

◆ getUserIdsOfOrgUnit()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::getUserIdsOfOrgUnit ( int  $orgunit_ref_id)
Returns
ilOrgUnitUserAssignment[]

Definition at line 149 of file class.ilOrgUnitUserAssignmentRepository.php.

References ActiveRecord\where().

149  : array
150  {
151  return ilOrgUnitUserAssignment::where(['orgu_id' => $orgunit_ref_id])->getArray(null, 'user_id');
152  }
static where($where, $operator=null)
+ Here is the call graph for this function:

◆ getUserIdsOfOrgUnits()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::getUserIdsOfOrgUnits ( array  $orgunit_ref_id)
Parameters
int[]$orgunit_ref_id
Returns
ilOrgUnitUserAssignment[]

Definition at line 158 of file class.ilOrgUnitUserAssignmentRepository.php.

References ActiveRecord\where().

158  : array
159  {
160  return ilOrgUnitUserAssignment::where(['orgu_id' => $orgunit_ref_id])->getArray(null, 'user_id');
161  }
static where($where, $operator=null)
+ Here is the call graph for this function:

◆ getUserIdsOfOrgUnitsInPosition()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::getUserIdsOfOrgUnitsInPosition ( array  $orgu_ids,
int  $position_id 
)
Parameters
int[]$orgu_ids
Returns
int[]

Definition at line 181 of file class.ilOrgUnitUserAssignmentRepository.php.

References ActiveRecord\where().

181  : array
182  {
184  'orgu_id' => $orgu_ids,
185  'position_id' => $position_id,
186  ])->getArray(null, 'user_id');
187  }
static where($where, $operator=null)
+ Here is the call graph for this function:

◆ getUserIdsOfOrgUnitsOfUsersPosition()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::getUserIdsOfOrgUnitsOfUsersPosition ( int  $position_id,
int  $user_id,
bool  $recursive = false 
)
Returns
ilOrgUnitUserAssignment[]

Definition at line 166 of file class.ilOrgUnitUserAssignmentRepository.php.

References OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository\getOrgUnitIdsOfUsersPosition(), and ActiveRecord\where().

166  : array
167  {
169  $position_id,
170  $user_id,
171  $recursive
172  )
173  ])
174  ->getArray(null, 'user_id');
175  }
static where($where, $operator=null)
getOrgUnitIdsOfUsersPosition(int $position_id, int $user_id, bool $recursive=false)
+ Here is the call graph for this function:

◆ getUserIdsOfPosition()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::getUserIdsOfPosition ( int  $position_id)
Returns
int[]

Definition at line 233 of file class.ilOrgUnitUserAssignmentRepository.php.

References ActiveRecord\where().

233  : array
234  {
236  'position_id' => $position_id,
237  ])->getArray(null, 'user_id');
238  }
static where($where, $operator=null)
+ Here is the call graph for this function:

◆ getUserIdsOfUsersOrgUnitsInPosition()

OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::getUserIdsOfUsersOrgUnitsInPosition ( int  $user_id,
array  $users_position_id,
int  $position_id,
bool  $recursive = false 
)
Returns
int[]

Definition at line 192 of file class.ilOrgUnitUserAssignmentRepository.php.

References OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository\getOrgUnitIdsOfUsersPosition(), and ActiveRecord\where().

197  : array {
199  'orgu_id' => $this->getOrgUnitIdsOfUsersPosition($users_position_id, $user_id, $recursive),
200  'position_id' => $position_id,
201  ])->getArray(null, 'user_id');
202  }
static where($where, $operator=null)
getOrgUnitIdsOfUsersPosition(int $position_id, int $user_id, bool $recursive=false)
+ Here is the call graph for this function:

Field Documentation

◆ $instance

self OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository::$instance
staticprotected

Definition at line 28 of file class.ilOrgUnitUserAssignmentRepository.php.


The documentation for this class was generated from the following file: