ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilStudyProgrammeUserTableRow.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
26  protected PRGProgressId $id;
27  protected int $status_raw;
28  protected bool $active_raw;
29 
31 
32  protected string $active;
33  protected string $firstname;
34  protected string $lastname;
35  protected string $login;
36  protected string $orgus;
37  protected string $gender;
38  protected string $status;
39  protected string $completion_date;
43  protected ?array $completion_by_obj_ids;
44  protected string $completion_by;
45  protected string $points_reachable;
46  protected string $points_required;
47  protected string $points_current;
48  protected string $custom_plan;
49  protected string $belongs_to;
50  protected string $assign_date;
51  protected string $assigned_by;
52  protected string $deadline;
53  protected string $expiry_date;
54  protected string $validity;
55  protected string $restart_date;
56  protected int $lifecycle_status;
57 
58  public function __construct(
59  protected int $ass_id,
60  protected int $usr_id,
61  protected int $node_obj_id,
62  protected bool $is_root_progress,
63  protected ilPRGUserInformation $user_information
64  ) {
65  $this->id = new PRGProgressId($ass_id, $usr_id, $node_obj_id);
66  }
67 
68  public function getId(): PRGProgressId
69  {
70  return $this->id;
71  }
72  public function getAssignmentId(): int
73  {
74  return $this->ass_id;
75  }
76  public function getUsrId(): int
77  {
78  return $this->usr_id;
79  }
80  public function getNodeId(): int
81  {
82  return $this->node_obj_id;
83  }
84  public function isRootProgress(): bool
85  {
86  return $this->is_root_progress;
87  }
88 
90  {
91  return $this->user_information;
92  }
93  public function getUserData(string $field_id)
94  {
95  return $this->user_information->getUserData($field_id);
96  }
97 
98  public function withUserActiveRaw(bool $active_raw): self
99  {
100  $clone = clone $this;
101  $clone->active_raw = $active_raw;
102  return $clone;
103  }
104  public function isUserActiveRaw(): bool
105  {
106  return $this->active_raw;
107  }
108  public function withUserActive(string $active): self
109  {
110  $clone = clone $this;
111  $clone->active = $active;
112  return $clone;
113  }
114  public function getUserActive(): string
115  {
116  return $this->active;
117  }
118 
119  public function withFirstname(string $firstname): self
120  {
121  $clone = clone $this;
122  $clone->firstname = $firstname;
123  return $clone;
124  }
125  public function getFirstname(): string
126  {
127  return $this->firstname;
128  }
129 
130  public function withLastname(string $lastname): self
131  {
132  $clone = clone $this;
133  $clone->lastname = $lastname;
134  return $clone;
135  }
136  public function getLastname(): string
137  {
138  return $this->lastname;
139  }
140 
141  public function getName(): string
142  {
143  return $this->lastname . ', ' . $this->firstname;
144  }
145 
146  public function withLogin(string $login): self
147  {
148  $clone = clone $this;
149  $clone->login = $login;
150  return $clone;
151  }
152  public function getLogin(): string
153  {
154  return $this->login;
155  }
156 
157  public function withOrgUs(string $orgus): self
158  {
159  $clone = clone $this;
160  $clone->orgus = $orgus;
161  return $clone;
162  }
163  public function getOrgUs(): string
164  {
165  return $this->orgus;
166  }
167 
168  public function withGender(string $gender): self
169  {
170  $clone = clone $this;
171  $clone->gender = $gender;
172  return $clone;
173  }
174  public function getGender(): string
175  {
176  return $this->gender;
177  }
178 
179  public function withStatus(string $status): self
180  {
181  $clone = clone $this;
182  $clone->status = $status;
183  return $clone;
184  }
185  public function getStatus(): string
186  {
187  return $this->status;
188  }
189  public function withStatusRaw(int $status_raw): self
190  {
191  $clone = clone $this;
192  $clone->status_raw = $status_raw;
193  return $clone;
194  }
195  public function getStatusRaw(): int
196  {
197  return $this->status_raw;
198  }
199 
200  public function withCompletionDate(string $completion_date): self
201  {
202  $clone = clone $this;
203  $clone->completion_date = $completion_date;
204  return $clone;
205  }
206  public function getCompletionDate(): string
207  {
208  return $this->completion_date;
209  }
210 
211  public function withCompletionBy(string $completion_by): self
212  {
213  $clone = clone $this;
214  $clone->completion_by = $completion_by;
215  return $clone;
216  }
217  public function getCompletionBy(): string
218  {
219  return $this->completion_by;
220  }
221 
225  public function withCompletionByObjIds(?array $obj_ids): self
226  {
227  $clone = clone $this;
228  $clone->completion_by_obj_ids = $obj_ids;
229  return $clone;
230  }
231 
235  public function getCompletionByObjIds(): ?array
236  {
238  }
239 
240  public function withPointsReachable(string $points_reachable): self
241  {
242  $clone = clone $this;
243  $clone->points_reachable = $points_reachable;
244  return $clone;
245  }
246  public function getPointsReachable(): string
247  {
249  }
250  public function withPointsRequired(string $points_required): self
251  {
252  $clone = clone $this;
253  $clone->points_required = $points_required;
254  return $clone;
255  }
256  public function getPointsRequired(): string
257  {
258  return $this->points_required;
259  }
260  public function withPointsCurrent(string $points_current): self
261  {
262  $clone = clone $this;
263  $clone->points_current = $points_current;
264  return $clone;
265  }
266  public function getPointsCurrent(): string
267  {
268  return $this->points_current;
269  }
270  public function withCustomPlan(string $custom_plan): self
271  {
272  $clone = clone $this;
273  $clone->custom_plan = $custom_plan;
274  return $clone;
275  }
276  public function getCustomPlan(): string
277  {
278  return $this->custom_plan;
279  }
280 
281  public function withBelongsTo(string $belongs_to): self
282  {
283  $clone = clone $this;
284  $clone->belongs_to = $belongs_to;
285  return $clone;
286  }
287  public function getBelongsTo(): string
288  {
289  return $this->belongs_to;
290  }
291 
292  public function withAssignmentDate(string $assign_date): self
293  {
294  $clone = clone $this;
295  $clone->assign_date = $assign_date;
296  return $clone;
297  }
298  public function getAssignmentDate(): string
299  {
300  return $this->assign_date;
301  }
302 
303  public function withAssignmentBy(string $assigned_by): self
304  {
305  $clone = clone $this;
306  $clone->assigned_by = $assigned_by;
307  return $clone;
308  }
309  public function getAssignmentBy(): string
310  {
311  return $this->assigned_by;
312  }
313 
314  public function withDeadline(string $deadline): self
315  {
316  $clone = clone $this;
317  $clone->deadline = $deadline;
318  return $clone;
319  }
320  public function getDeadline(): string
321  {
322  return $this->deadline;
323  }
324 
325  public function withExpiryDate(string $expiry_date): self
326  {
327  $clone = clone $this;
328  $clone->expiry_date = $expiry_date;
329  return $clone;
330  }
331  public function getExpiryDate(): string
332  {
333  return $this->expiry_date;
334  }
335 
336  public function withValidity(string $validity): self
337  {
338  $clone = clone $this;
339  $clone->validity = $validity;
340  return $clone;
341  }
342  public function getValidity(): string
343  {
344  return $this->validity;
345  }
346 
347  public function withRestartDate(string $restart_date): self
348  {
349  $clone = clone $this;
350  $clone->restart_date = $restart_date;
351  return $clone;
352  }
353  public function getRestartDate(): string
354  {
355  return $this->restart_date;
356  }
357 
358  public function withNodeLifecycleStatus(int $lifecycle_status): self
359  {
360  if (! in_array($lifecycle_status, \ilStudyProgrammeAssessmentSettings::$STATUS)) {
361  throw new \LogicException('Invalid status: ' . $lifecycle_status);
362  }
363  $clone = clone $this;
364  $clone->lifecycle_status = $lifecycle_status;
365  return $clone;
366  }
367 
368  public function getNodeLifecycleStatus(): int
369  {
371  }
372 
373  public function toArray(): array
374  {
375  $ret = [
376  'prgrs_id' => (string) $this->getId(),
377  'name' => $this->getName(),
378  'active_raw' => $this->isUserActiveRaw(),
379  'active' => $this->getUserActive(),
380  'firstname' => $this->getFirstname(),
381  'lastname' => $this->getLastname(),
382  'login' => $this->getLogin(),
383  'orgus' => $this->getOrgUs(),
384  'gender' => $this->getGender(),
385  'status' => $this->getStatus(),
386  'completion_date' => $this->getCompletionDate(),
387  'completion_by' => $this->getCompletionBy(),
388  'points_reachable' => $this->getPointsReachable(),
389  'points_required' => $this->getPointsRequired(),
390  'points_current' => $this->getPointsCurrent(),
391  'custom_plan' => $this->getCustomPlan(),
392  'belongs_to' => $this->getBelongsTo(),
393  'assign_date' => $this->getAssignmentDate(),
394  'assigned_by' => $this->getAssignmentBy(),
395  'deadline' => $this->getDeadline(),
396  'expiry_date' => $this->getExpiryDate(),
397  'validity' => $this->getValidity()
398  ];
399 
400  foreach ($this->user_information->getAvailableUserFields() as $user_field) {
401  if (! array_key_exists($user_field, $ret)) {
402  $ret[$user_field] = $this->getUserData($user_field);
403  }
404  }
405 
406  return $ret;
407  }
408 }
ilStudyProgrammeUserTable provides a flattened list of progresses at a programme-node.
__construct(protected int $ass_id, protected int $usr_id, protected int $node_obj_id, protected bool $is_root_progress, protected ilPRGUserInformation $user_information)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Additional information about a user, used in context of assignments.
withPointsReachable(string $points_reachable)