19 declare(strict_types=1);
35 [
'name',
'name',
false,
true,
true],
36 [
'login',
'login',
false,
true,
true],
37 [
'prg_orgus',
'prg_orgus',
true,
true,
true],
38 [
'prg_status',
'prg_status',
false,
true,
true],
39 [
'prg_completion_date',
'prg_completion_date',
true,
true,
true],
40 [
'prg_completion_by',
'prg_completion_by',
true,
true,
true],
41 [
'points',
'prg_points_reachable',
false,
true,
false],
42 [
'points_required',
'prg_points_required',
false,
false,
true],
43 [
'points_current',
'prg_points_current',
false,
false,
true],
44 [
'prg_custom_plan',
'prg_custom_plan',
true,
true,
true],
45 [
'prg_belongs_to',
'prg_belongs_to',
true,
true,
true],
46 [
'prg_assign_date',
'prg_assign_date',
false,
true,
true],
47 [
'prg_assigned_by',
'prg_assigned_by',
true,
true,
true],
48 [
'prg_deadline',
'prg_deadline',
true,
true,
true],
49 [
'prg_expiry_date',
'prg_expiry_date',
true,
true,
true],
50 [
'prg_validity',
'prg_validity',
true,
true,
true]
54 'prg_status' =>
'status',
55 'prg_custom_plan' =>
'custom_plan',
56 'prg_belongs_to' =>
'belongs_to',
57 'prg_validity' =>
'validity',
58 'prg_orgus' =>
'orgus',
59 'prg_completion_by' =>
'completion_by',
60 'prg_completion_date' =>
'completion_date',
61 'prg_assign_date' =>
'assign_date',
62 'prg_assigned_by' =>
'assigned_by',
63 'prg_deadline' =>
'deadline',
64 'prg_expiry_date' =>
'expiry_date',
65 'pgs_id' =>
'prgrs_id' 91 $this->
lng->loadLanguageModule(
"prg");
97 $user_data_cols = $this->export_fields_info->getSelectableFieldsInfo($prg_id);
98 foreach ($user_data_cols as $k => $column_definition) {
99 $cols[$k] = [$k, $column_definition[
'txt'],
true,
true,
true];
107 foreach (self::PRG_COLS as $k) {
108 $k[1] = $this->
lng->txt($k[1]);
114 public function getColumns(
int $prg_id,
bool $add_active_column =
false): array
116 $columns = array_merge(
121 if ($add_active_column) {
122 $columns[
"active"] = [
"active", $this->
lng->txt(
"active"),
true,
true,
true];
130 return $this->assignment_repo->countAllForNodeIsContained($prg_id, $valid_user_ids, $custom_filters);
139 ?array $valid_user_ids,
145 $data = $this->assignment_repo->getAllForNodeIsContained(
153 $offset = $offset ?? 0;
161 $data = $this->assignment_repo->getForUser($usr_id);
162 $row = array_map(fn ($ass) => $this->
toRow($ass, $ass->getRootId()),
$data);
170 $this->skip_perm_check_on_user = $flag;
176 in_array($usr_id, $this->user_ids_viewer_may_read_learning_progress_of)
193 $points_reachable = (string) $pgs->getPossiblePointsOfRelevantChildren();
195 $points_reachable = (string) $pgs->getAmountOfPoints();
208 ->withStatusRaw($pgs->getStatus())
209 ->withCompletionDate(
215 ->withCompletionByObjIds(
218 ->withPointsReachable($points_reachable)
219 ->withPointsRequired((
string) $pgs->getAmountOfPoints())
220 ->withPointsCurrent($show_lp ? (
string) $pgs->getCurrentAmountOfPoints() :
'')
221 ->withCustomPlan($this->
boolToRepresent($pgs->hasIndividualModifications()))
222 ->withBelongsTo($this::lookupTitle($ass->
getRootId()))
223 ->withAssignmentDate($pgs->getAssignmentDate()->format($this->
getUserDateFormat()))
234 $show_lp && $pgs->getValidityOfQualification() ? $pgs->getValidityOfQualification()->format($this->
getUserDateFormat()) :
'' 253 return $this->
lng->txt(
"prg_status_in_progress");
256 return $this->
lng->txt(
"prg_status_completed");
259 return $this->
lng->txt(
"prg_status_accredited");
262 return $this->
lng->txt(
"prg_status_not_relevant");
265 return $this->
lng->txt(
"prg_status_failed");
267 throw new ilException(
"Unknown status: '$a_status'");
272 return ($value) ? $this->
lng->txt(
"yes") : $this->
lng->txt(
"no");
280 return $pgs->
isInvalidated() ? $this->
lng->txt(
"prg_not_valid") : $this->
lng->txt(
"prg_still_valid");
285 return $value ? $this->
lng->txt(
'active') : $this->
lng->txt(
'inactive');
291 if ($manually || ! in_array($assignment_src, $srcs)) {
292 return $this::lookupTitle($assignment_src);
294 return implode(
' ', [
295 $this->
lng->txt(
'prg_autoassignment'),
296 $this->
lng->txt($srcs[$assignment_src])
304 return $this::lookupTitle($completion_by);
308 fn (
int $node_obj_id):
string => self::lookupTitle($node_obj_id),
312 return implode(
', ',
$out);
319 return [$completion_by];
321 $successful_subnodes = array_filter(
341 return sprintf(
'(%s)', $title);
347 $target_ref_id = array_shift($refs) ?? null;
349 return sprintf(
'(%s)', $title);
355 return sprintf(
'(%s)', $del[
'title']);
357 return 'object id ' . $obj_id;
362 [$aspect, $direction] = $order->join(
'',
function (
$i, $k, $v) {
366 if (array_key_exists($aspect, self::ORDER_MAPPING)) {
367 $aspect = self::ORDER_MAPPING[$aspect];
374 if (is_numeric($a[$aspect])) {
375 return $a[$aspect] <=> $b[$aspect];
377 return strcmp($a[$aspect], $b[$aspect]);
380 if ($direction === $order::DESC) {
381 $list = array_reverse($list);
ilStudyProgrammeUserTable provides a flattened list of progresses at a programme-node.
toRow(ilPRGAssignment $ass, int $node_id)
fetchData(int $prg_id, ?array $valid_user_ids, Order $order, ilPRGAssignmentFilter $custom_filters=null, int $limit=null, int $offset=null)
includeLearningProgress(int $usr_id)
Class ChatMainBarProvider .
static _getAllReferences(int $id)
get all reference ids for object ID
ilPRGPermissionsHelper $permissions
boolToRepresent(bool $value)
ilPRGAssignmentDBRepository $assignment_repo
completionByToRepresent(ilPRGProgress $progress)
static getUserDateFormat(int $a_add_time=0, bool $a_for_parsing=false)
Parse current user setting into date/time format.
static lookupTitle(int $obj_id)
assignmentSourceToRepresent(bool $manually, int $assignment_src)
const VALIDITY_OPTION_INVALID
Both the subject and the direction need to be specified when expressing an order. ...
statusToRepresent($a_status)
ilExportFieldsInfo $export_fields_info
disablePermissionCheck($flag=false)
A Progress is the status of a user on a single node of an assignment; it is unique by assignment_id:u...
__construct(ilDBInterface $db, ilExportFieldsInfo $export_fields_info, ilPRGAssignmentDBRepository $assignment_repo, ilLanguage $lng, ilPRGPermissionsHelper $permissions)
const OP_READ_LEARNING_PROGRESS
validToRepresent(ilPRGProgress $pgs)
static _lookupTitle(int $obj_id)
const VALIDITY_OPTION_VALID
static _isInTrash(int $ref_id)
completionByToCollection(ilPRGProgress $progress)
const STATUS_NOT_RELEVANT
countFetchData(int $prg_id, ?array $valid_user_ids, ilPRGAssignmentFilter $custom_filters)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstanceByObjId(int $obj_id)
const OPTION_USR_INACTIVE
ilStudyProgrammeUserTable provides a flattened list of progresses at a programme-node.
getUserIdsSusceptibleTo(string $operation)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
static getRefIdFor(int $obj_id)
array $user_ids_viewer_may_read_learning_progress_of
static get(int $a_object_id)
getProgressForNode(int $node_id)
const COMPLETED_BY_SUBNODES
Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PR...
static _lookupType(int $id, bool $reference=false)
fetchSingleUserRootAssignments(int $usr_id)
postOrder(array $list, \ILIAS\Data\Order $order)
activeToRepresent(bool $value)
getUserDataColumns(int $prg_id)
getColumns(int $prg_id, bool $add_active_column=false)