ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilStudyProgrammeUserTable Class Reference

ilStudyProgrammeUserTable provides a flattened list of progresses at a programme-node. More...

+ Collaboration diagram for ilStudyProgrammeUserTable:

Public Member Functions

 __construct (ilDBInterface $db, ilExportFieldsInfo $export_fields_info, ilPRGAssignmentDBRepository $assignment_repo, ilLanguage $lng, ilPRGPermissionsHelper $permissions)
 
 getColumns (int $prg_id, bool $add_active_column=false)
 
 countFetchData (int $prg_id, ?array $valid_user_ids, ilPRGAssignmentFilter $custom_filters)
 
 fetchData (int $prg_id, ?array $valid_user_ids, Order $order, ?ilPRGAssignmentFilter $custom_filters=null, ?int $limit=null, ?int $offset=null)
 
 fetchSingleUserRootAssignments (int $usr_id)
 
 disablePermissionCheck ($flag=false)
 
 statusToRepresent ($a_status)
 
 boolToRepresent (bool $value)
 
 validToRepresent (ilPRGProgress $pgs)
 
 activeToRepresent (bool $value)
 
 assignmentSourceToRepresent (bool $manually, int $assignment_src)
 
 completionByToRepresent (ilPRGProgress $progress)
 

Static Public Member Functions

static lookupTitle (int $obj_id)
 

Data Fields

const OPTION_ALL = -1
 
const VALIDITY_OPTION_VALID = 1
 
const VALIDITY_OPTION_INVALID = 3
 
const OPTION_USR_ACTIVE = 1
 
const OPTION_USR_INACTIVE = 2
 
const PRG_COLS
 

Protected Member Functions

 getUserDataColumns (int $prg_id)
 
 getPrgColumns ()
 
 includeLearningProgress (int $usr_id)
 
 toRow (ilPRGAssignment $ass, int $node_id)
 
 getUserDateFormat ()
 
 completionByToCollection (ilPRGProgress $progress)
 
 postOrder (array $list, \ILIAS\Data\Order $order)
 

Protected Attributes

const ilDBInterface $db
 
ilExportFieldsInfo $export_fields_info
 
ilLanguage $lng
 
ilPRGPermissionsHelper $permissions
 
array $user_ids_viewer_may_read_learning_progress_of
 
ilPRGAssignmentDBRepository $assignment_repo
 
 $skip_perm_check_on_user = false
 

Private Attributes

const ORDER_MAPPING
 

Detailed Description

ilStudyProgrammeUserTable provides a flattened list of progresses at a programme-node.

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

Constructor & Destructor Documentation

◆ __construct()

ilStudyProgrammeUserTable::__construct ( ilDBInterface  $db,
ilExportFieldsInfo  $export_fields_info,
ilPRGAssignmentDBRepository  $assignment_repo,
ilLanguage  $lng,
ilPRGPermissionsHelper  $permissions 
)

Definition at line 74 of file class.ilStudyProgrammeUserTable.php.

References $assignment_repo, $db, $export_fields_info, $lng, $permissions, ilPRGPermissionsHelper\getUserIdsSusceptibleTo(), ILIAS\Repository\lng(), and ilOrgUnitOperation\OP_READ_LEARNING_PROGRESS.

80  {
81  $this->db = $db;
82  $this->export_fields_info = $export_fields_info;
83  $this->assignment_repo = $assignment_repo;
84  $this->lng = $lng;
85  $this->permissions = $permissions;
86  $this->user_ids_viewer_may_read_learning_progress_of = $this->permissions->getUserIdsSusceptibleTo(
88  );
89 
90  $this->lng->loadLanguageModule("prg");
91  }
ilPRGAssignmentDBRepository $assignment_repo
getUserIdsSusceptibleTo(string $operation)
+ Here is the call graph for this function:

Member Function Documentation

◆ activeToRepresent()

ilStudyProgrammeUserTable::activeToRepresent ( bool  $value)

Definition at line 289 of file class.ilStudyProgrammeUserTable.php.

References ILIAS\Repository\lng().

Referenced by toRow().

289  : string
290  {
291  return $value ? $this->lng->txt('active') : $this->lng->txt('inactive');
292  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ assignmentSourceToRepresent()

ilStudyProgrammeUserTable::assignmentSourceToRepresent ( bool  $manually,
int  $assignment_src 
)

Definition at line 294 of file class.ilStudyProgrammeUserTable.php.

References ilPRGAssignment\AUTO_ASSIGNED_BY_RESTART, ILIAS\Repository\lng(), and ilStudyProgrammeAutoMembershipSource\SOURCE_MAPPING.

Referenced by toRow().

294  : string
295  {
297  $srcs[ilPRGAssignment::AUTO_ASSIGNED_BY_RESTART] = 'restarted';
298  if ($manually || ! array_key_exists($assignment_src, $srcs)) {
299  return $this::lookupTitle($assignment_src);
300  }
301  return implode(' ', [
302  $this->lng->txt('prg_autoassignment'),
303  $this->lng->txt($srcs[$assignment_src])
304  ]);
305  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ boolToRepresent()

ilStudyProgrammeUserTable::boolToRepresent ( bool  $value)

Definition at line 276 of file class.ilStudyProgrammeUserTable.php.

References ILIAS\Repository\lng().

Referenced by toRow().

276  : string
277  {
278  return ($value) ? $this->lng->txt("yes") : $this->lng->txt("no");
279  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ completionByToCollection()

ilStudyProgrammeUserTable::completionByToCollection ( ilPRGProgress  $progress)
protected

Definition at line 322 of file class.ilStudyProgrammeUserTable.php.

References ilPRGProgress\COMPLETED_BY_SUBNODES, ilPRGProgress\getCompletionBy(), ilPRGProgress\getNodeId(), ILIAS\StudyProgramme\Assignment\Node\getSubnodes(), and ilPRGProgress\isSuccessful().

Referenced by completionByToRepresent(), and toRow().

322  : array
323  {
324  $completion_by = $progress->getCompletionBy();
325  if ($completion_by !== ilPRGProgress::COMPLETED_BY_SUBNODES) {
326  return [$completion_by];
327  }
328  $successful_subnodes = array_filter(
329  $progress->getSubnodes(),
330  static fn(ilPRGProgress $pgs): bool => $pgs->isSuccessful()
331  );
332  return array_map(
333  static fn(ilPRGProgress $pgs): int => $pgs->getNodeId(),
334  $successful_subnodes
335  );
336  }
A Progress is the status of a user on a single node of an assignment; it is unique by assignment_id:u...
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ completionByToRepresent()

ilStudyProgrammeUserTable::completionByToRepresent ( ilPRGProgress  $progress)

Definition at line 307 of file class.ilStudyProgrammeUserTable.php.

References $out, ilPRGProgress\COMPLETED_BY_SUBNODES, completionByToCollection(), and ilPRGProgress\getCompletionBy().

Referenced by toRow().

307  : string
308  {
309  $completion_by = $progress->getCompletionBy();
310  if ($completion_by !== ilPRGProgress::COMPLETED_BY_SUBNODES) {
311  return $this::lookupTitle($completion_by);
312  }
313 
314  $out = array_map(
315  fn(int $node_obj_id): string => self::lookupTitle($node_obj_id),
316  $this->completionByToCollection($progress)
317  );
318 
319  return implode(', ', $out);
320  }
$out
Definition: buildRTE.php:24
completionByToCollection(ilPRGProgress $progress)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ countFetchData()

ilStudyProgrammeUserTable::countFetchData ( int  $prg_id,
?array  $valid_user_ids,
ilPRGAssignmentFilter  $custom_filters 
)

Definition at line 132 of file class.ilStudyProgrammeUserTable.php.

132  : int
133  {
134  return $this->assignment_repo->countAllForNodeIsContained($prg_id, $valid_user_ids, $custom_filters);
135  }

◆ disablePermissionCheck()

ilStudyProgrammeUserTable::disablePermissionCheck (   $flag = false)

Definition at line 172 of file class.ilStudyProgrammeUserTable.php.

172  : void
173  {
174  $this->skip_perm_check_on_user = $flag;
175  }

◆ fetchData()

ilStudyProgrammeUserTable::fetchData ( int  $prg_id,
?array  $valid_user_ids,
Order  $order,
?ilPRGAssignmentFilter  $custom_filters = null,
?int  $limit = null,
?int  $offset = null 
)
Returns
ilStudyProgrammeUserTableRow[]
Exceptions
ilException

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

References $data, postOrder(), and toRow().

148  : array {
149  $data = $this->assignment_repo->getAllForNodeIsContained(
150  $prg_id,
151  $valid_user_ids,
152  $custom_filters
153  );
154  $rows = array_map(fn($ass) => $this->toRow($ass, $prg_id), $data);
155  $rows = $this->postOrder($rows, $order);
156  if ($limit) {
157  $offset = $offset ?? 0;
158  $rows = array_slice($rows, $offset, $limit);
159  }
160  return $rows;
161  }
toRow(ilPRGAssignment $ass, int $node_id)
postOrder(array $list, \ILIAS\Data\Order $order)
+ Here is the call graph for this function:

◆ fetchSingleUserRootAssignments()

ilStudyProgrammeUserTable::fetchSingleUserRootAssignments ( int  $usr_id)

Definition at line 163 of file class.ilStudyProgrammeUserTable.php.

References $data, and toRow().

163  : array
164  {
165  $data = $this->assignment_repo->getForUser($usr_id);
166  $row = array_map(fn($ass) => $this->toRow($ass, $ass->getRootId()), $data);
167  return $row;
168  }
toRow(ilPRGAssignment $ass, int $node_id)
+ Here is the call graph for this function:

◆ getColumns()

ilStudyProgrammeUserTable::getColumns ( int  $prg_id,
bool  $add_active_column = false 
)

Definition at line 113 of file class.ilStudyProgrammeUserTable.php.

References getPrgColumns(), getUserDataColumns(), and ILIAS\Repository\lng().

113  : array
114  {
115  $prg_cols = $this->getPrgColumns();
116  $prg_cols_pre = array_slice($prg_cols, 0, 2);
117  $prg_cols_post = array_slice($prg_cols, 2);
118 
119  $columns = array_merge(
120  $prg_cols_pre,
121  $this->getUserDataColumns($prg_id),
122  $prg_cols_post
123  );
124 
125  if ($add_active_column) {
126  $columns["active"] = ["active", $this->lng->txt("active"), true, true, true];
127  }
128  return $columns;
129  }
+ Here is the call graph for this function:

◆ getPrgColumns()

ilStudyProgrammeUserTable::getPrgColumns ( )
protected

Definition at line 103 of file class.ilStudyProgrammeUserTable.php.

References ILIAS\Repository\lng().

Referenced by getColumns().

103  : array
104  {
105  $cols = [];
106  foreach (self::PRG_COLS as $k) {
107  $k[1] = $this->lng->txt($k[1]);
108  $cols[$k[0]] = $k;
109  }
110  return $cols;
111  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getUserDataColumns()

ilStudyProgrammeUserTable::getUserDataColumns ( int  $prg_id)
protected

Definition at line 93 of file class.ilStudyProgrammeUserTable.php.

Referenced by getColumns().

93  : array
94  {
95  $cols = [];
96  $user_data_cols = $this->export_fields_info->getSelectableFieldsInfo($prg_id);
97  foreach ($user_data_cols as $k => $column_definition) {
98  $cols[$k] = [$k, $column_definition['txt'], true, true, true];
99  }
100  return $cols;
101  }
+ Here is the caller graph for this function:

◆ getUserDateFormat()

ilStudyProgrammeUserTable::getUserDateFormat ( )
protected

Definition at line 248 of file class.ilStudyProgrammeUserTable.php.

References ilCalendarUtil\getUserDateFormat().

Referenced by toRow().

248  : string
249  {
250  return ilCalendarUtil::getUserDateFormat(0, true);
251  }
static getUserDateFormat(int $a_add_time=0, bool $a_for_parsing=false)
Parse current user setting into date/time format.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ includeLearningProgress()

ilStudyProgrammeUserTable::includeLearningProgress ( int  $usr_id)
protected

Definition at line 177 of file class.ilStudyProgrammeUserTable.php.

Referenced by toRow().

177  : bool
178  {
179  return $this->skip_perm_check_on_user
180  || in_array($usr_id, $this->user_ids_viewer_may_read_learning_progress_of);
181  }
+ Here is the caller graph for this function:

◆ lookupTitle()

static ilStudyProgrammeUserTable::lookupTitle ( int  $obj_id)
static

Definition at line 338 of file class.ilStudyProgrammeUserTable.php.

References ilObject\_getAllReferences(), ilObject\_isInTrash(), ilObject\_lookupTitle(), ilObject\_lookupType(), ilObjectDataDeletionLog\get(), ilObjStudyProgramme\getRefIdFor(), and null.

Referenced by ilStudyProgrammeIndividualPlanTableGUI\fetchData(), and ilStudyProgrammeMembersTableGUI\fillRow().

338  : string
339  {
340  $type = ilObject::_lookupType($obj_id);
341  switch ($type) {
342  case 'usr':
343  return ilObject::_lookupTitle($obj_id);
344  case 'prg':
345  $title = ilObject::_lookupTitle($obj_id);
347  return sprintf('(%s)', $title);
348  }
349  return $title;
350  case 'crs':
351  $title = ilObject::_lookupTitle($obj_id);
352  $refs = ilObject::_getAllReferences($obj_id);
353  $target_ref_id = array_shift($refs) ?? null;
354  if ($target_ref_id === null || ilObject::_isInTrash($target_ref_id)) {
355  return sprintf('(%s)', $title);
356  }
357  return $title;
358  }
359 
360  if ($del = ilObjectDataDeletionLog::get($obj_id)) {
361  return sprintf('(%s)', $del['title']);
362  }
363  return 'object id ' . $obj_id;
364  }
static _getAllReferences(int $id)
get all reference ids for object ID
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _lookupTitle(int $obj_id)
static _isInTrash(int $ref_id)
static getRefIdFor(int $obj_id)
static _lookupType(int $id, bool $reference=false)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ postOrder()

ilStudyProgrammeUserTable::postOrder ( array  $list,
\ILIAS\Data\Order  $order 
)
protected

Definition at line 366 of file class.ilStudyProgrammeUserTable.php.

References Vendor\Package\$a, Vendor\Package\$b, and ilStudyProgrammeUserTableRow\toArray().

Referenced by fetchData().

366  : array
367  {
368  [$aspect, $direction] = $order->join('', function ($i, $k, $v) {
369  return [$k, $v];
370  });
371 
372  if (array_key_exists($aspect, self::ORDER_MAPPING)) {
373  $aspect = self::ORDER_MAPPING[$aspect];
374  }
375 
376  usort($list, static function (ilStudyProgrammeUserTableRow $a, ilStudyProgrammeUserTableRow $b) use ($aspect): int {
377  $a = $a->toArray();
378  $b = $b->toArray();
379 
380  if (is_numeric($a[$aspect])) {
381  return $a[$aspect] <=> $b[$aspect];
382  }
383  return strcmp($a[$aspect], $b[$aspect]);
384  });
385 
386  if ($direction === $order::DESC) {
387  $list = array_reverse($list);
388  }
389  return $list;
390  }
ilStudyProgrammeUserTable provides a flattened list of progresses at a programme-node.
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ statusToRepresent()

ilStudyProgrammeUserTable::statusToRepresent (   $a_status)
Exceptions
ilException

Definition at line 256 of file class.ilStudyProgrammeUserTable.php.

References ILIAS\Repository\lng(), ilPRGProgress\STATUS_ACCREDITED, ilPRGProgress\STATUS_COMPLETED, ilPRGProgress\STATUS_FAILED, ilPRGProgress\STATUS_IN_PROGRESS, and ilPRGProgress\STATUS_NOT_RELEVANT.

Referenced by toRow().

256  : string
257  {
258  if ($a_status == ilPRGProgress::STATUS_IN_PROGRESS) {
259  return $this->lng->txt("prg_status_in_progress");
260  }
261  if ($a_status == ilPRGProgress::STATUS_COMPLETED) {
262  return $this->lng->txt("prg_status_completed");
263  }
264  if ($a_status == ilPRGProgress::STATUS_ACCREDITED) {
265  return $this->lng->txt("prg_status_accredited");
266  }
267  if ($a_status == ilPRGProgress::STATUS_NOT_RELEVANT) {
268  return $this->lng->txt("prg_status_not_relevant");
269  }
270  if ($a_status == ilPRGProgress::STATUS_FAILED) {
271  return $this->lng->txt("prg_status_failed");
272  }
273  throw new ilException("Unknown status: '$a_status'");
274  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ toRow()

ilStudyProgrammeUserTable::toRow ( ilPRGAssignment  $ass,
int  $node_id 
)
protected

Definition at line 183 of file class.ilStudyProgrammeUserTable.php.

References activeToRepresent(), assignmentSourceToRepresent(), boolToRepresent(), completionByToCollection(), completionByToRepresent(), ilStudyProgrammeUserTableRow\getCompletionBy(), ilStudyProgrammeUserTableRow\getCompletionDate(), ilStudyProgrammeUserTableRow\getDeadline(), ilPRGAssignment\getId(), ilObjStudyProgramme\getInstanceByObjId(), ilPRGAssignment\getLastChangeBy(), ilPRGAssignment\getProgressForNode(), ilPRGAssignment\getRestartDate(), ilPRGAssignment\getRootId(), getUserDateFormat(), ilPRGAssignment\getUserId(), ilPRGAssignment\getUserInformation(), includeLearningProgress(), ilPRGAssignment\isManuallyAssigned(), ILIAS\Repository\lng(), ilStudyProgrammeSettings\MODE_LP_COMPLETED, null, statusToRepresent(), and validToRepresent().

Referenced by fetchData(), and fetchSingleUserRootAssignments().

184  {
185  $pgs = $ass->getProgressForNode($node_id);
186  $row = new ilStudyProgrammeUserTableRow(
187  $ass->getId(),
188  $ass->getUserId(),
189  $node_id,
190  $ass->getRootId() === $node_id,
191  $ass->getUserInformation()
192  );
193 
194  $show_lp = $this->includeLearningProgress($ass->getUserId());
195 
196  $prg_node = ilObjStudyProgramme::getInstanceByObjId($node_id);
197  $points_reachable = (string) $pgs->getPossiblePointsOfRelevantChildren();
198  if ($prg_node->getLPMode() === ilStudyProgrammeSettings::MODE_LP_COMPLETED) {
199  $points_reachable = (string) $pgs->getAmountOfPoints();
200  }
201 
202  $prg_lifecycle_status = $prg_node->getStatus();
203 
204  $row = $row
205  ->withUserActiveRaw($ass->getUserInformation()->isActive())
206  ->withUserActive($this->activeToRepresent($ass->getUserInformation()->isActive()))
207  ->withFirstname($ass->getUserInformation()->getFirstname())
208  ->withLastname($ass->getUserInformation()->getLastname())
209  ->withLogin($ass->getUserInformation()->getLogin())
210  ->withOrgUs($ass->getUserInformation()->getOrguRepresentation())
211  ->withGender($this->lng->txt('gender_' . $ass->getUserInformation()->getGender()))
212  ->withStatus($show_lp ? $this->statusToRepresent($pgs->getStatus()) : '')
213  ->withStatusRaw($pgs->getStatus())
214  ->withCompletionDate(
215  $show_lp && $pgs->getCompletionDate() ? $pgs->getCompletionDate()->format($this->getUserDateFormat()) : ''
216  )
217  ->withCompletionBy(
218  $show_lp && $pgs->getCompletionBy() ? $this->completionByToRepresent($pgs) : ''
219  )
220  ->withCompletionByObjIds(
221  $show_lp && $pgs->getCompletionBy() ? $this->completionByToCollection($pgs) : null
222  )
223  ->withPointsReachable($points_reachable)
224  ->withPointsRequired((string) $pgs->getAmountOfPoints())
225  ->withPointsCurrent($show_lp ? (string) $pgs->getCurrentAmountOfPoints() : '')
226  ->withCustomPlan($this->boolToRepresent($pgs->hasIndividualModifications()))
227  ->withBelongsTo($this::lookupTitle($ass->getRootId()))
228  ->withAssignmentDate($pgs->getAssignmentDate()->format($this->getUserDateFormat()))
229  ->withAssignmentBy(
231  $ass->isManuallyAssigned(),
232  $ass->getLastChangeBy()
233  )
234  )
235  ->withDeadline(
236  $show_lp && $pgs->getDeadline() && !$pgs->isSuccessful() ? $pgs->getDeadline()->format($this->getUserDateFormat()) : ''
237  )
238  ->withExpiryDate(
239  $show_lp && $pgs->getValidityOfQualification() ? $pgs->getValidityOfQualification()->format($this->getUserDateFormat()) : ''
240  )
241  ->withValidity($show_lp ? $this->validToRepresent($pgs) : '')
242  ->withRestartDate($ass->getRestartDate() ? $ass->getRestartDate()->format($this->getUserDateFormat()) : '')
243  ->withNodeLifecycleStatus($prg_lifecycle_status)
244  ;
245  return $row;
246  }
ilStudyProgrammeUserTable provides a flattened list of progresses at a programme-node.
completionByToRepresent(ilPRGProgress $progress)
assignmentSourceToRepresent(bool $manually, int $assignment_src)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
completionByToCollection(ilPRGProgress $progress)
static getInstanceByObjId(int $obj_id)
getProgressForNode(int $node_id)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ validToRepresent()

ilStudyProgrammeUserTable::validToRepresent ( ilPRGProgress  $pgs)

Definition at line 281 of file class.ilStudyProgrammeUserTable.php.

References ilPRGProgress\isInvalidated(), ilPRGProgress\isSuccessful(), and ILIAS\Repository\lng().

Referenced by toRow().

281  : string
282  {
283  if (!$pgs->isSuccessful()) {
284  return '-';
285  }
286  return $pgs->isInvalidated() ? $this->lng->txt("prg_not_valid") : $this->lng->txt("prg_still_valid");
287  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $assignment_repo

ilPRGAssignmentDBRepository ilStudyProgrammeUserTable::$assignment_repo
protected

Definition at line 72 of file class.ilStudyProgrammeUserTable.php.

Referenced by __construct().

◆ $db

const ilDBInterface ilStudyProgrammeUserTable::$db
protected
Initial value:
=> 'custom_plan',
'prg_belongs_to' => 'belongs_to',
'prg_validity' => 'validity',
'prg_orgus' => 'orgus',
'prg_completion_by' => 'completion_by',
'prg_completion_date' => 'completion_date',
'prg_assign_date' => 'assign_date',
'prg_assigned_by' => 'assigned_by',
'prg_deadline' => 'deadline',
'prg_expiry_date' => 'expiry_date',
'pgs_id' => 'prgrs_id'
]

Definition at line 54 of file class.ilStudyProgrammeUserTable.php.

Referenced by __construct().

◆ $export_fields_info

ilExportFieldsInfo ilStudyProgrammeUserTable::$export_fields_info
protected

Definition at line 68 of file class.ilStudyProgrammeUserTable.php.

Referenced by __construct().

◆ $lng

ilLanguage ilStudyProgrammeUserTable::$lng
protected

Definition at line 69 of file class.ilStudyProgrammeUserTable.php.

Referenced by __construct().

◆ $permissions

ilPRGPermissionsHelper ilStudyProgrammeUserTable::$permissions
protected

Definition at line 70 of file class.ilStudyProgrammeUserTable.php.

Referenced by __construct().

◆ $skip_perm_check_on_user

ilStudyProgrammeUserTable::$skip_perm_check_on_user = false
protected

Definition at line 171 of file class.ilStudyProgrammeUserTable.php.

◆ $user_ids_viewer_may_read_learning_progress_of

array ilStudyProgrammeUserTable::$user_ids_viewer_may_read_learning_progress_of
protected

Definition at line 71 of file class.ilStudyProgrammeUserTable.php.

◆ OPTION_ALL

const ilStudyProgrammeUserTable::OPTION_ALL = -1

◆ OPTION_USR_ACTIVE

const ilStudyProgrammeUserTable::OPTION_USR_ACTIVE = 1

◆ OPTION_USR_INACTIVE

const ilStudyProgrammeUserTable::OPTION_USR_INACTIVE = 2

◆ ORDER_MAPPING

const ilStudyProgrammeUserTable::ORDER_MAPPING
private
Initial value:
= [
'prg_status' => 'status'

Definition at line 52 of file class.ilStudyProgrammeUserTable.php.

◆ PRG_COLS

const ilStudyProgrammeUserTable::PRG_COLS
Initial value:
= [
['name', 'name', false, true, true],
['login', 'login', false, true, true],
['prg_status', 'prg_status', false, true, true],
['prg_completion_date', 'prg_completion_date', true, true, true],
['prg_completion_by', 'prg_completion_by', true, true, true],
['points', 'prg_points_reachable', false, true, false],
['points_required', 'prg_points_required', false, false, true],
['points_current', 'prg_points_current', false, false, true],
['prg_custom_plan', 'prg_custom_plan', true, true, true],
['prg_belongs_to', 'prg_belongs_to', true, true, true],
['prg_assign_date', 'prg_assign_date', false, true, true],
['prg_assigned_by', 'prg_assigned_by', true, true, true],
['prg_deadline', 'prg_deadline', true, true, true],
['prg_expiry_date', 'prg_expiry_date', true, true, true],
['prg_validity', 'prg_validity', true, true, true]
]

Definition at line 34 of file class.ilStudyProgrammeUserTable.php.

◆ VALIDITY_OPTION_INVALID

const ilStudyProgrammeUserTable::VALIDITY_OPTION_INVALID = 3

◆ VALIDITY_OPTION_VALID

const ilStudyProgrammeUserTable::VALIDITY_OPTION_VALID = 1

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