ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLPTableBaseGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=0);
20 
23 
31 {
32  public const HIT_LIMIT = 5000;
34  protected HttpService $http;
35 
36  protected array $filter = [];
37  protected bool $anonymized = true;
39  private ilObjUser $user;
40  protected ilSetting $setting;
43  protected ilTree $tree;
44  protected \ilGlobalTemplateInterface $main_tpl;
45 
46  public function __construct(
47  ?object $a_parent_obj,
48  string $a_parent_cmd = "",
49  string $a_template_context = ""
50  ) {
51  global $DIC;
52  $this->main_tpl = $DIC->ui()->mainTemplate();
53 
54  $this->objDefinition = $DIC['objDefinition'];
55  $this->ilObjDataCache = $DIC['ilObjDataCache'];
56  $this->tree = $DIC->repositoryTree();
57  $this->user = $DIC->user();
58  $this->setting = $DIC->settings();
59  $this->http = $DIC->http();
60  $this->refinery = $DIC->refinery();
61 
62  $this->anonymized = !ilObjUserTracking::_enabledUserRelatedData();
63  if (!$this->anonymized && isset($this->obj_id) && $this->obj_id > 0) {
64  $olp = ilObjectLP::getInstance($this->obj_id);
65  $this->anonymized = $olp->isAnonymized();
66  }
67 
68  /*
69  * BT 35453: parent constructor needs to be called after $this->anonymized
70  * is set, in order for getSelectableUserColumns to also properly return
71  * user defined fields (e.g. firstname, lastname, and other user data).
72  */
73  parent::__construct($a_parent_obj, $a_parent_cmd, $a_template_context);
74 
75  // country names
76  $this->lng->loadLanguageModule("meta");
77  }
78 
79  protected function initItemIdFromPost(): array
80  {
81  if ($this->http->wrapper()->post()->has('item_id')) {
82  return $this->http->wrapper()->post()->retrieve(
83  'item_id',
84  $this->refinery->kindlyTo()->listOf(
85  $this->refinery->kindlyTo()->int()
86  )
87  );
88  }
89  return [];
90  }
91 
92  protected function initUidFromPost(): array
93  {
94  if ($this->http->wrapper()->post()->has('uid')) {
95  return $this->http->wrapper()->post()->retrieve(
96  'uid',
97  $this->refinery->kindlyTo()->listOf(
98  $this->refinery->kindlyTo()->int()
99  )
100  );
101  }
102  return [];
103  }
104 
105  public function executeCommand(): bool
106  {
107  $this->determineSelectedFilters();
108  if (!$this->ctrl->getNextClass($this)) {
109  $to_hide = false;
110 
111  switch ($this->ctrl->getCmd()) {
112  case "applyFilter":
113  $this->resetOffset();
114  $this->writeFilterToSession();
115  $this->storeProperty("offset", "0");
116  break;
117 
118  case "resetFilter":
119  $this->resetOffset();
120  $this->resetFilter();
121  $this->storeProperty("offset", "0");
122  break;
123 
124  case "hideSelected":
125  $to_hide = $this->initItemIdFromPost();
126  break;
127 
128  case "hide":
129  $hide = 0;
130  if ($this->http->wrapper()->query()->has('hide')) {
131  $hide = $this->http->wrapper()->query()->retrieve(
132  'hide',
133  $this->refinery->kindlyTo()->int()
134  );
135  }
136  $to_hide = [$hide];
137  break;
138 
139  case "mailselectedusers":
140  if (!$this->initUidFromPost()) {
141  $this->main_tpl->setOnScreenMessage(
142  'failure',
143  $this->lng->txt(
144  "no_checkbox"
145  ),
146  true
147  );
148  } else {
149  $this->sendMail(
150  $this->initUidFromPost(),
151  $this->parent_obj,
152  $this->parent_cmd
153  );
154  }
155  break;
156 
157  case 'addToClipboard':
158  if (!$this->initUidFromPost()) {
159  $this->main_tpl->setOnScreenMessage(
160  'failure',
161  $this->lng->txt(
162  'no_checkbox'
163  ),
164  true
165  );
166  } else {
167  $this->addToClipboard();
168  }
169  break;
170 
171  // page selector
172  default:
173  $this->determineOffsetAndOrder();
174  $this->storeNavParameter();
175  $this->storeProperty("offset", (string) $this->getOffset());
176  break;
177  }
178 
179  if ($to_hide) {
180  $obj = $this->getFilterItemByPostVar("hide");
181  $value = array_unique(
182  array_merge((array) $obj->getValue(), $to_hide)
183  );
184  $obj->setValue($value);
185  $obj->writeToSession();
186  }
187 
188  if ($this->requested_tmpl_create !== "") {
189  $this->ctrl->setParameter(
190  $this->parent_obj,
191  "tbltplcrt",
192  $this->requested_tmpl_create
193  );
194  }
195  if ($this->requested_tmpl_delete !== "") {
196  $this->ctrl->setParameter(
197  $this->parent_obj,
198  "tbltpldel",
199  $this->requested_tmpl_delete
200  );
201  }
202  $this->ctrl->redirect($this->parent_obj, $this->parent_cmd);
203  } else {
204  // e.g. repository selector
205  return parent::executeCommand();
206  }
207  return true;
208  }
209 
213  protected function findReferencesForObjId(int $a_obj_id): array
214  {
215  $ref_ids = array_keys(ilObject::_getAllReferences($a_obj_id));
216  sort($ref_ids, SORT_NUMERIC);
217  return $ref_ids;
218  }
219 
220 
221 
222  protected function sendMail(
223  array $a_user_ids,
224  $a_parent_obj,
225  string $a_parent_cmd
226  ): void {
227  // see ilObjCourseGUI::sendMailToSelectedUsersObject()
228 
229  $rcps = array();
230  foreach ($a_user_ids as $usr_id) {
231  $rcps[] = ilObjUser::_lookupLogin($usr_id);
232  }
233 
234  $template = array();
235  $sig = null;
236 
237  $ref_id = 0;
238  if ($this->http->wrapper()->query()->has('ref_id')) {
239  $ref_id = $this->http->wrapper()->query()->retrieve(
240  'ref_id',
241  $this->refinery->kindlyTo()->int()
242  );
243  }
244  // repository-object-specific
245  if ($ref_id) {
246  $obj_lp = ilObjectLP::getInstance(
248  );
249  $tmpl_id = $obj_lp->getMailTemplateId();
250 
251  if ($tmpl_id) {
252  $template = array(
253  ilMailFormCall::CONTEXT_KEY => $tmpl_id,
254  'ref_id' => $ref_id,
255  'ts' => time()
256  );
257  } else {
258  $sig = ilLink::_getLink($ref_id);
259  $sig = rawurlencode(base64_encode($sig));
260  }
261  }
262 
265  $a_parent_obj,
266  $a_parent_cmd,
267  array(),
268  array(
269  'type' => 'new',
270  'rcp_to' => implode(',', $rcps),
271  'sig' => $sig
272  ),
273  $template
274  )
275  );
276  }
277 
281  protected function searchObjects(
282  array $filter,
283  string $permission,
284  ?array $preset_obj_ids = null,
285  bool $a_check_lp_activation = true
286  ): array {
287  $query_parser = new ilQueryParser($filter["query"] ?? '');
288  $query_parser->setMinWordLength(0);
289  $query_parser->setCombination(ilQueryParser::QP_COMBINATION_AND);
290  $query_parser->parse();
291  if (!$query_parser->validate()) {
292  ilLoggerFactory::getLogger('trac')->notice(
293  $query_parser->getMessage()
294  );
295  // echo $query_parser->getMessage();
296  return [];
297  }
298 
299  if ($filter["type"] == "lres") {
300  $filter["type"] = array('lm', 'sahs', 'htlm');
301  } else {
302  $filter["type"] = array($filter["type"]);
303  }
304 
305  $object_search = new ilLikeObjectSearch($query_parser);
306  $object_search->setFilter($filter["type"]);
307  if ($preset_obj_ids) {
308  $object_search->setIdFilter($preset_obj_ids);
309  }
310  $res = $object_search->performSearch();
311 
312  if ($permission) {
313  $res->setRequiredPermission($permission);
314  }
315 
316  $res->setMaxHits(self::HIT_LIMIT);
317 
318  if ($a_check_lp_activation) {
319  $res->addObserver($this, "searchFilterListener");
320  }
321 
322  if (!$this->filter["area"]) {
323  $res->filter(ROOT_FOLDER_ID, true);
324  } else {
325  $res->filter($this->filter["area"], true);
326  }
327 
328  $objects = array();
329  foreach ($res->getResults() as $obj_data) {
330  $objects[$obj_data['obj_id']][] = $obj_data['ref_id'];
331  }
332  return $objects ?: array();
333  }
334 
340  public function searchFilterListener(int $a_ref_id, array $a_data): bool
341  {
342  if (is_array($this->filter["hide"]) && in_array(
343  $a_data["obj_id"],
344  $this->filter["hide"]
345  )) {
346  return false;
347  }
348  $olp = ilObjectLP::getInstance($a_data["obj_id"]);
349  if (get_class(
350  $olp
351  ) != "ilObjectLP" && // #13654 - LP could be unsupported
352  !$olp->isActive()) {
353  return false;
354  }
355  return true;
356  }
357 
358  protected function isForwardingToFormDispatcher(): bool
359  {
360  return false;
361  }
362 
363  protected function initRepositoryFilter(array $filter): array
364  {
365  $repo = new ilRepositorySelector2InputGUI(
366  $this->lng->txt('trac_filter_area'),
367  'effective_from',
368  false,
369  ($this->isForwardingToFormDispatcher()) ? $this : null
370  );
371  $white_list = [];
372  foreach ($this->objDefinition->getAllRepositoryTypes() as $type) {
373  if ($this->objDefinition->isContainer($type)) {
374  $white_list[] = $type;
375  }
376  }
377  $repo->getExplorerGUI()->setTypeWhiteList($white_list);
378  $this->addFilterItem($repo);
379  $repo->readFromSession();
380  $filter['area'] = (int) $repo->getValue();
381  return $filter;
382  }
383 
387  public function initBaseFilter(
388  bool $a_split_learning_resources = false,
389  bool $a_include_no_status_filter = true
390  ) {
391  $this->setDisableFilterHiding(true);
392 
393  // object type selection
394  $si = new ilSelectInputGUI($this->lng->txt("obj_type"), "type");
395  $si->setOptions($this->getPossibleTypes($a_split_learning_resources));
396  $this->addFilterItem($si);
397  $si->readFromSession();
398  if (!$si->getValue()) {
399  $si->setValue("crs");
400  }
401  $this->filter["type"] = $si->getValue();
402 
403  // hidden items
404  $msi = new ilMultiSelectInputGUI(
405  $this->lng->txt("trac_filter_hidden"),
406  "hide"
407  );
408  $this->addFilterItem($msi);
409  $msi->readFromSession();
410  $this->filter["hide"] = $msi->getValue();
411  if ($this->filter["hide"]) {
412  // create options from current value
413  $types = $this->getCurrentFilter(true);
414  $options = [];
415  foreach ($this->filter["hide"] as $obj_id) {
416  $options[$obj_id] = $this->ilObjDataCache->lookupTitle(
417  (int) $obj_id
418  );
419  }
420  $msi->setOptions($options);
421  }
422 
423  // title/description
424  $ti = new ilTextInputGUI(
425  $this->lng->txt("trac_title_description"),
426  "query"
427  );
428  $ti->setMaxLength(64);
429  $ti->setSize(20);
430  $this->addFilterItem($ti);
431  $ti->readFromSession();
432  $this->filter["query"] = $ti->getValue();
433 
434  // repository area selection
436  $this->lng->txt("trac_filter_area"),
437  "area"
438  );
439  $rs->setSelectText($this->lng->txt("trac_select_area"));
440  $this->addFilterItem($rs);
441  $rs->readFromSession();
442  $this->filter["area"] = $rs->getValue();
443 
444  // hide "not started yet"
445  if ($a_include_no_status_filter) {
446  $cb = new ilCheckboxInputGUI(
447  $this->lng->txt("trac_filter_has_status"),
448  "status"
449  );
450  $this->addFilterItem($cb);
451  $cb->readFromSession();
452  $this->filter["status"] = $cb->getChecked();
453  }
454  }
455 
458  protected function buildPath(array $ref_ids): array
459  {
460  if (!count($ref_ids)) {
461  return [];
462  }
463  $result = [];
464  foreach ($ref_ids as $ref_id) {
465  $path = "...";
466  $counter = 0;
467  $path_full = $this->tree->getPathFull($ref_id);
468  foreach ($path_full as $data) {
469  if (++$counter < (count($path_full) - 1)) {
470  continue;
471  }
472  $path .= " &raquo; ";
473  if ($ref_id != $data['ref_id']) {
474  $path .= $data['title'];
475  } else {
476  $path .= ('<a target="_top" href="' .
477  ilLink::_getLink(
478  $data['ref_id'],
479  $data['type']
480  ) . '">' .
481  $data['title'] . '</a>');
482  }
483  }
484 
485  $result[$ref_id] = $path;
486  }
487  return $result;
488  }
489 
490  protected function getPossibleTypes(
491  bool $a_split_learning_resources = false,
492  bool $a_include_digilib = false,
493  bool $a_allow_undefined_lp = false
494  ): array {
495  global $DIC;
496 
497  $component_repository = $DIC['component.repository'];
498 
499  $options = array();
500 
501  if ($a_split_learning_resources) {
502  $options['lm'] = $this->lng->txt('objs_lm');
503  $options['sahs'] = $this->lng->txt('objs_sahs');
504  $options['htlm'] = $this->lng->txt('objs_htlm');
505  } else {
506  $options['lres'] = $this->lng->txt('obj_lrss');
507  }
508 
509  $options['crs'] = $this->lng->txt('objs_crs');
510  $options['grp'] = $this->lng->txt('objs_grp');
511  $options['exc'] = $this->lng->txt('objs_exc');
512  $options['file'] = $this->lng->txt('objs_file');
513  $options['mcst'] = $this->lng->txt('objs_mcst');
514  $options['svy'] = $this->lng->txt('objs_svy');
515  $options['tst'] = $this->lng->txt('objs_tst');
516  $options['prg'] = $this->lng->txt('objs_prg');
517  $options['iass'] = $this->lng->txt('objs_iass');
518  $options['copa'] = $this->lng->txt('objs_copa');
519  $options['frm'] = $this->lng->txt('objs_frm');
520  $options['cmix'] = $this->lng->txt('objs_cmix');
521  $options['lti'] = $this->lng->txt('objs_lti');
522  $options['lso'] = $this->lng->txt('objs_lso');
523 
524  if ($a_allow_undefined_lp) {
525  $options['root'] = $this->lng->txt('obj_reps');
526  $options['cat'] = $this->lng->txt('objs_cat');
527  $options["webr"] = $this->lng->txt("objs_webr");
528  $options["wiki"] = $this->lng->txt("objs_wiki");
529  $options["blog"] = $this->lng->txt("objs_blog");
530  $options["prtf"] = $this->lng->txt("objs_prtf");
531  $options["prtt"] = $this->lng->txt("objs_prtt");
532  }
533 
534  // repository plugins (currently only active)
535  $plugins = $component_repository->getPluginSlotById(
536  "robj"
537  )->getActivePlugins();
538  foreach ($plugins as $pl) {
539  $pl_id = $pl->getId();
541  $options[$pl_id] = ilObjectPlugin::lookupTxtById(
542  $pl_id,
543  "objs_" . $pl_id
544  );
545  }
546  }
547 
548  asort($options);
549  return $options;
550  }
551 
552  protected function parseValue(
553  string $id,
554  ?string $value,
555  string $type
556  ): string {
557  // get rid of aggregation
558  $pos = strrpos($id, "_");
559  if ($pos !== false) {
560  $function = strtoupper(substr($id, $pos + 1));
561  if (in_array(
562  $function,
563  array("MIN", "MAX", "SUM", "AVG", "COUNT")
564  )) {
565  $id = substr($id, 0, $pos);
566  }
567  }
568 
569  if ((trim((string) $value) == "") && $id != "status") {
570  if ($id == "title" &&
571  get_class($this) != "ilTrObjectUsersPropsTableGUI" &&
572  get_class($this) != "ilTrMatrixTableGUI") {
573  return "--" . $this->lng->txt("none") . "--";
574  }
575  return " ";
576  }
577 
578  switch ($id) {
579  case "first_access":
580  case "create_date":
581  case 'status_changed':
583  new ilDateTime($value, IL_CAL_DATETIME)
584  );
585  break;
586 
587  case "last_access":
589  new ilDateTime($value, IL_CAL_UNIX)
590  );
591  break;
592 
593  case "birthday":
595  new ilDate($value, IL_CAL_DATE)
596  );
597  break;
598 
599  case "spent_seconds":
600  if (!ilObjectLP::supportsSpentSeconds($type)) {
601  $value = "-";
602  } else {
604  (int) $value,
605  ((int) $value < 3600 ? true : false)
606  ); // #14858
607  }
608  break;
609 
610  case "percentage":
611  if (false /* $this->isPercentageAvailable() */) {
612  $value = "-";
613  } else {
614  $value = $value . "%";
615  }
616  break;
617 
618  case "mark":
619  if (!ilObjectLP::supportsMark($type)) {
620  $value = "-";
621  }
622  break;
623 
624  case "gender":
625  $value = $this->lng->txt("gender_" . $value);
626  break;
627 
628  case "status":
629  $icons = ilLPStatusIcons::getInstance($this->getIconVariant());
630  $value = $icons->renderIconForStatus((int) $value);
631  break;
632 
633  case "language":
634  $this->lng->loadLanguageModule("meta");
635  $value = $this->lng->txt("meta_l_" . $value);
636  break;
637 
638  case "sel_country":
639  $value = $this->lng->txt("meta_c_" . $value);
640  break;
641  }
642 
643  return $value ?? '';
644  }
645 
646  public function getCurrentFilter(bool $as_query = false): array
647  {
648  $result = array();
649  foreach ($this->filter as $id => $value) {
650  $item = $this->getFilterItemByPostVar($id);
651  switch ($id) {
652  case "title":
653  case "country":
654  case "gender":
655  case "city":
656  case "language":
657  case "login":
658  case "firstname":
659  case "lastname":
660  case "mark":
661  case "u_comment":
662  case "institution":
663  case "department":
664  case "street":
665  case "zipcode":
666  case "email":
667  case "matriculation":
668  case "sel_country":
669  case "query":
670  case "type":
671  case "area":
672  if ($value) {
673  $result[$id] = $value;
674  }
675  break;
676 
677  case "status":
678  if (!is_null($value) && $value !== "") {
679  $result[$id] = $value;
680  }
681  break;
682 
683  case "user_total":
684  case "read_count":
685  case "percentage":
686  case "hide":
687  case "spent_seconds":
688  if (is_array($value) && implode("", $value)) {
689  $result[$id] = $value;
690  }
691  break;
692 
693  case "registration":
694  case "create_date":
695  case "first_access":
696  case "last_access":
697  case 'status_changed':
698  if ($value) {
699  if ($value["from"]) {
700  $result[$id]["from"] = $value["from"]->get(
702  );
703  }
704  if ($value["to"]) {
705  $result[$id]["to"] = $value["to"]->get(
707  );
708  }
709  }
710  break;
711 
712  case "birthday":
713  if ($value) {
714  if ($value["from"]) {
715  $result[$id]["from"] = $value["from"]->get(
717  );
718  $result[$id]["from"] = substr(
719  $result[$id]["from"],
720  0,
721  -8
722  ) . "00:00:00";
723  }
724  if ($value["to"]) {
725  $result[$id]["to"] = $value["to"]->get(
727  );
728  $result[$id]["to"] = substr(
729  $result[$id]["to"],
730  0,
731  -8
732  ) . "23:59:59";
733  }
734  }
735  break;
736  }
737  }
738  return $result;
739  }
740 
741  protected function isPercentageAvailable(int $a_obj_id): bool
742  {
743  if ($a_obj_id === 0) {
744  return false;
745  }
746  $olp = ilObjectLP::getInstance($a_obj_id);
747  $mode = $olp->getCurrentMode();
748  if (in_array(
749  $mode,
750  [
764  ]
765  )) {
766  return true;
767  }
768  return false;
769  }
770 
771  protected function parseTitle(
772  int $a_obj_id,
773  string $action,
774  int $a_user_id = 0
775  ) {
776  global $DIC;
777 
778  $user = "";
779  if ($a_user_id) {
780  if ($a_user_id != $this->user->getId()) {
781  $a_user = ilObjectFactory::getInstanceByObjId($a_user_id);
782  } else {
783  $a_user = $this->user;
784  }
785  $user .= ", " . $a_user->getFullName(
786  ); // " [".$a_user->getLogin()."]";
787  }
788 
789  if ($a_obj_id != ROOT_FOLDER_ID) {
790  $this->setTitle(
791  $this->lng->txt(
792  $action
793  ) . ": " . $this->ilObjDataCache->lookupTitle($a_obj_id) . $user
794  );
795 
796  $olp = ilObjectLP::getInstance($a_obj_id);
797  $this->setDescription(
798  $this->lng->txt('trac_mode') . ": " . $olp->getModeText(
799  $olp->getCurrentMode()
800  )
801  );
802  } else {
803  $this->setTitle($this->lng->txt($action));
804  }
805  }
806 
810  protected function getExportMeta(): array
811  {
812  global $DIC;
813 
814  $ilClientIniFile = $DIC['ilClientIniFile'];
815 
816  /* see spec
817  Name of installation
818  Name of the course
819  Permalink to course
820  Owner of course object
821  Date of report generation
822  Reporting period
823  Name of person who generated the report.
824  */
825 
827 
828  $data = array();
829  $data[$this->lng->txt(
830  "trac_name_of_installation"
831  )] = $ilClientIniFile->readVariable('client', 'name');
832 
833  if ($this->obj_id) {
834  $data[$this->lng->txt(
835  "trac_object_name"
836  )] = $this->ilObjDataCache->lookupTitle((int) $this->obj_id);
837  if ($this->ref_id) {
838  $data[$this->lng->txt("trac_object_link")] = ilLink::_getLink(
839  $this->ref_id,
840  ilObject::_lookupType($this->obj_id)
841  );
842  }
843  $data[$this->lng->txt(
844  "trac_object_owner"
846  ilObject::_lookupOwner($this->obj_id)
847  );
848  }
849 
850  $data[$this->lng->txt(
851  "trac_report_date"
853  new ilDateTime(
854  time(),
856  )
857  );
858  $data[$this->lng->txt("trac_report_owner")] = $this->user->getFullName(
859  );
860 
861  return $data;
862  }
863 
864  protected function fillMetaExcel(ilExcel $a_excel, int &$a_row): void
865  {
866  foreach ($this->getExportMeta() as $caption => $value) {
867  $a_excel->setCell($a_row, 0, $caption);
868  $a_excel->setCell($a_row, 1, $value);
869  $a_row++;
870  }
871  $a_row++;
872  }
873 
874  protected function fillMetaCSV(ilCSVWriter $a_csv): void
875  {
876  foreach ($this->getExportMeta() as $caption => $value) {
877  $a_csv->addColumn(strip_tags($caption));
878  $a_csv->addColumn(strip_tags($value));
879  $a_csv->addRow();
880  }
881  $a_csv->addRow();
882  }
883 
889  protected function showTimingsWarning(int $a_ref_id, int $a_user_id)
890  {
891  $timing_cache = ilTimingCache::getInstanceByRefId($a_ref_id);
892  if ($timing_cache->isWarningRequired($a_user_id)) {
893  $timings = ilTimingCache::_getTimings($a_ref_id);
894  if (
895  $timings['item']['changeable'] &&
896  ($timings['user'][$a_user_id] ?? false) &&
897  $timings['user'][$a_user_id]['end']
898  ) {
899  $end = $timings['user'][$a_user_id]['end'];
900  } elseif ($timings['item']['suggestion_end']) {
901  $end = $timings['item']['suggestion_end'];
902  } else {
903  $end = true;
904  }
905  return $end;
906  }
907  return false;
908  }
909 
910  protected function formatSeconds(
911  int $seconds,
912  bool $a_shorten_zero = false
913  ): string {
914  $seconds = ($seconds > 0) ? $seconds : 0;
915  if ($a_shorten_zero && !$seconds) {
916  return "-";
917  }
918 
919  $hours = floor($seconds / 3600);
920  $rest = $seconds % 3600;
921 
922  $minutes = floor($rest / 60);
923  $rest = $rest % 60;
924 
925  if ($rest) {
926  $minutes++;
927  }
928 
929  return sprintf("%dh%02dm", $hours, $minutes);
930  }
931 
937  protected function anonymizeValue($a_value, bool $a_force_number = false)
938  {
939  // currently inactive
940  return $a_value;
941  }
942 
943  protected function buildValueScale(
944  int $a_max_value,
945  bool $a_anonymize = false,
946  bool $a_format_seconds = false
947  ): array {
948  $step = 0;
949  if ($a_max_value) {
950  $step = $a_max_value / 10;
951  $base = ceil(log($step, 10));
952  $fac = ceil($step / pow(10, ($base - 1)));
953  $step = pow(10, $base - 1) * $fac;
954  }
955  if ($step <= 1) {
956  $step = 1;
957  }
958  $ticks = range(0, $a_max_value + $step, $step);
959 
960  $value_ticks = array(0 => 0);
961  foreach ($ticks as $tick) {
962  $value = $tvalue = $tick;
963  if ($a_anonymize) {
964  $value = $this->anonymizeValue($value, true);
965  $tvalue = $this->anonymizeValue($tvalue);
966  }
967  if ($a_format_seconds) {
968  $tvalue = $this->formatSeconds($value);
969  }
970  $value_ticks[$value] = $tvalue;
971  }
972 
973  return $value_ticks;
974  }
975 
976  protected function getMonthsFilter($a_short = false): array
977  {
978  $options = array();
979  for ($loop = 0; $loop < 10; $loop++) {
980  $year = date("Y") - $loop;
981  $options[$year] = $year;
982  for ($loop2 = 12; $loop2 > 0; $loop2--) {
983  $month = str_pad($loop2, 2, "0", STR_PAD_LEFT);
984  if ($year . $month <= date("Ym")) {
985  if (!$a_short) {
986  $caption = $year . " / " . $this->lng->txt(
987  "month_" . $month . "_long"
988  );
989  } else {
990  $caption = $year . "/" . $month;
991  }
992  $options[$year . "-" . $month] = $caption;
993  }
994  }
995  }
996  return $options;
997  }
998 
999  protected function getMonthsYear($a_year = null, $a_short = false): array
1000  {
1001  if (!$a_year) {
1002  $a_year = date("Y");
1003  }
1004 
1005  $all = array();
1006  for ($loop = 1; $loop < 13; $loop++) {
1007  $month = str_pad($loop, 2, "0", STR_PAD_LEFT);
1008  if ($a_year . "-" . $month <= date("Y-m")) {
1009  if (!$a_short) {
1010  $caption = $this->lng->txt("month_" . $month . "_long");
1011  } else {
1012  $caption = $this->lng->txt("month_" . $month . "_short");
1013  }
1014  $all[$a_year . "-" . $month] = $caption;
1015  }
1016  }
1017  return $all;
1018  }
1019 
1020  protected function getSelectableUserColumns(
1021  int $a_in_course = 0,
1022  int $a_in_group = 0
1023  ): array {
1024  $cols = $privacy_fields = array();
1025 
1026  $up = new ilUserProfile();
1027  $up->skipGroup("preferences");
1028  $up->skipGroup("settings");
1029  $up->skipGroup("interests");
1030  $ufs = $up->getStandardFields();
1031 
1032  // default fields
1033  $cols["login"] = array(
1034  "txt" => $this->lng->txt("login"),
1035  "default" => true
1036  );
1037 
1038  if (!$this->anonymized) {
1039  $cols["firstname"] = array(
1040  "txt" => $this->lng->txt("firstname"),
1041  "default" => true
1042  );
1043  $cols["lastname"] = array(
1044  "txt" => $this->lng->txt("lastname"),
1045  "default" => true
1046  );
1047  }
1048 
1049  // show only if extended data was activated in lp settings
1050  $tracking = new ilObjUserTracking();
1051  if ($tracking->hasExtendedData(
1053  )) {
1054  $cols["first_access"] = array(
1055  "txt" => $this->lng->txt("trac_first_access"),
1056  "default" => true
1057  );
1058  $cols["last_access"] = array(
1059  "txt" => $this->lng->txt("trac_last_access"),
1060  "default" => true
1061  );
1062  }
1063  if ($tracking->hasExtendedData(
1065  )) {
1066  $cols["read_count"] = array(
1067  "txt" => $this->lng->txt("trac_read_count"),
1068  "default" => true
1069  );
1070  }
1071  if ($tracking->hasExtendedData(
1073  ) &&
1074  ilObjectLP::supportsSpentSeconds($this->type)) {
1075  $cols["spent_seconds"] = array(
1076  "txt" => $this->lng->txt("trac_spent_seconds"),
1077  "default" => true
1078  );
1079  }
1080 
1081  if ($this->isPercentageAvailable($this->obj_id)) {
1082  $cols["percentage"] = array(
1083  "txt" => $this->lng->txt("trac_percentage"),
1084  "default" => true
1085  );
1086  }
1087 
1088  // do not show status if learning progress is deactivated
1089  $olp = ilObjectLP::getInstance($this->obj_id);
1090  if ($olp->isActive()) {
1091  $cols["status"] = array(
1092  "txt" => $this->lng->txt("trac_status"),
1093  "default" => true
1094  );
1095 
1096  $cols['status_changed'] = array(
1097  'txt' => $this->lng->txt('trac_status_changed'),
1098  'default' => false
1099  );
1100  }
1101 
1102  if (ilObjectLP::supportsMark($this->type)) {
1103  $cols["mark"] = array(
1104  "txt" => $this->lng->txt("trac_mark"),
1105  "default" => true
1106  );
1107  }
1108 
1109  $cols["u_comment"] = array(
1110  "txt" => $this->lng->txt("trac_comment"),
1111  "default" => false
1112  );
1113 
1114  $cols["create_date"] = array(
1115  "txt" => $this->lng->txt("create_date"),
1116  "default" => false
1117  );
1118  $cols["language"] = array(
1119  "txt" => $this->lng->txt("language"),
1120  "default" => false
1121  );
1122 
1123  // add user data only if object is [part of] course
1124  if (!$this->anonymized &&
1125  ($a_in_course || $a_in_group)) {
1126  // only show if export permission is granted
1127  if (ilPrivacySettings::getInstance()->checkExportAccess(
1128  $a_in_group === 0 ? $a_in_course : $a_in_group
1129  )) {
1130  // other user profile fields
1131  foreach ($ufs as $f => $fd) {
1132  if (!isset($cols[$f]) && $f != "username" && !($fd["lists_hide"] ?? false)) {
1133  if ($a_in_course &&
1134  !(($fd["course_export_fix_value"] ?? false) || $this->setting->get(
1135  "usr_settings_course_export_" . $f
1136  ))) {
1137  continue;
1138  }
1139  if ($a_in_group &&
1140  !(($fd["group_export_fix_value"] ?? false) || $this->setting->get(
1141  "usr_settings_group_export_" . $f
1142  ))) {
1143  continue;
1144  }
1145 
1146  $cols[$f] = array(
1147  "txt" => $this->lng->txt($f),
1148  "default" => false
1149  );
1150  $privacy_fields[] = $f;
1151  }
1152  }
1153 
1154  // additional defined user data fields
1155  $user_defined_fields = ilUserDefinedFields::_getInstance();
1156  if ($a_in_course) {
1157  $user_defined_fields = $user_defined_fields->getCourseExportableFields(
1158  );
1159  } else {
1160  $user_defined_fields = $user_defined_fields->getGroupExportableFields(
1161  );
1162  }
1163  foreach ($user_defined_fields as $definition) {
1164  if ($definition["field_type"] != UDF_TYPE_WYSIWYG) {
1165  $f = "udf_" . $definition["field_id"];
1166  $cols[$f] = array(
1167  "txt" => $definition["field_name"],
1168  "default" => false
1169  );
1170 
1171  $privacy_fields[] = $f;
1172  }
1173  }
1174  }
1175  }
1176  return array($cols, $privacy_fields);
1177  }
1178 
1182  protected function addToClipboard(): void
1183  {
1184  $users = $this->initUidFromPost();
1185  $clip = ilUserClipboard::getInstance($this->user->getId());
1186  $clip->add($users);
1187  $clip->save();
1188  $this->lng->loadLanguageModule('user');
1189  $this->main_tpl->setOnScreenMessage(
1190  'success',
1191  $this->lng->txt(
1192  'clipboard_user_added'
1193  ),
1194  true
1195  );
1196  }
1197 
1201  public function getIconVariant(): int
1202  {
1203  return $this->icon_variant;
1204  }
1205 
1209  public function setIconVariant(int $variant): void
1210  {
1211  $this->icon_variant = $variant;
1212  }
1213 }
buildValueScale(int $a_max_value, bool $a_anonymize=false, bool $a_format_seconds=false)
static array static setUseRelativeDates(bool $a_status)
set use relative dates
addColumn(string $a_col)
$res
Definition: ltiservices.php:66
getPossibleTypes(bool $a_split_learning_resources=false, bool $a_include_digilib=false, bool $a_allow_undefined_lp=false)
getCurrentFilter(bool $as_query=false)
const IL_CAL_DATETIME
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getLogger(string $a_component_id)
Get component logger.
This class represents a selection list property in a property form.
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
const ROOT_FOLDER_ID
Definition: constants.php:32
static _lookupFullname(int $a_user_id)
getSelectableUserColumns(int $a_in_course=0, int $a_in_group=0)
findReferencesForObjId(int $a_obj_id)
getMonthsYear($a_year=null, $a_short=false)
searchObjects(array $filter, string $permission, ?array $preset_obj_ids=null, bool $a_check_lp_activation=true)
Search objects that match current filters.
static _getAllReferences(int $id)
get all reference ids for object ID
fillMetaExcel(ilExcel $a_excel, int &$a_row)
sendMail(array $a_user_ids, $a_parent_obj, string $a_parent_cmd)
setDescription(string $a_val)
static getInstance(int $variant=ilLPStatusIcons::ICON_VARIANT_DEFAULT, ?\ILIAS\UI\Renderer $renderer=null, ?\ILIAS\UI\Factory $factory=null)
setDisableFilterHiding(bool $a_val=true)
Class ilUserProfile.
__construct(?object $a_parent_obj, string $a_parent_cmd="", string $a_template_context="")
fillMetaCSV(ilCSVWriter $a_csv)
static _lookupOwner(int $obj_id)
Lookup owner user ID for object ID.
setOptions(array $a_options)
const IL_CAL_UNIX
static secondsToString(int $seconds, bool $force_with_seconds=false, ?ilLanguage $a_lng=null)
converts seconds to string: Long: 7 days 4 hour(s) ...
addToClipboard()
Add selected users to clipboard.
sort()
description: > Example for rendering a Sort Glyph.
Definition: sort.php:41
$path
Definition: ltiservices.php:29
searchFilterListener(int $a_ref_id, array $a_data)
Listener for SearchResultFilter Checks wheather the object is hidden and mode is not LP_MODE_DEACTIVA...
getFilterItemByPostVar(string $a_post_var)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
resetOffset(bool $a_in_determination=false)
initBaseFilter(bool $a_split_learning_resources=false, bool $a_include_no_status_filter=true)
Init filter.
This class represents a multi selection list property in a property form.
anonymizeValue($a_value, bool $a_force_number=false)
setCell(int $a_row, int $col, $value, ?string $datatype=null, bool $disable_strip_tags_for_strings=false)
Set cell value.
$ref_id
Definition: ltiauth.php:65
static http()
Fetches the global http state from ILIAS.
TableGUI class for learning progress.
getExportMeta()
Build export meta data.
isPercentageAvailable(int $a_obj_id)
This class represents a repository selector in a property form.
setIconVariant(int $variant)
Sets the variant of LP icons that is shown in the table.
getIconVariant()
Gets the variant of LP icons that is shown in the table.
parseValue(string $id, ?string $value, string $type)
global $DIC
Definition: shib_login.php:22
ilObjectDataCache $ilObjDataCache
ilObjectDefinition $objDefinition
static _lookupObjectId(int $ref_id)
formatSeconds(int $seconds, bool $a_shorten_zero=false)
const UDF_TYPE_WYSIWYG
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
static lookupTxtById(string $plugin_id, string $lang_var)
static redirect(string $a_script)
static isTypePluginWithLP(string $a_type, bool $a_active_status=true)
initRepositoryFilter(array $filter)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
static supportsSpentSeconds(string $obj_type)
const IL_CAL_DATE
ilGlobalTemplateInterface $main_tpl
getMonthsFilter($a_short=false)
__construct(Container $dic, ilPlugin $plugin)
const LP_MODE_CMIX_COMPL_OR_PASSED_WITH_FAILED
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
static getRedirectTarget( $gui, string $cmd, array $gui_params=[], array $mail_params=[], array $context_params=[])
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
static _getTimings(int $a_ref_id)
static supportsMark(string $obj_type)
static _lookupType(int $id, bool $reference=false)
parseTitle(int $a_obj_id, string $action, int $a_user_id=0)
showTimingsWarning(int $a_ref_id, int $a_user_id)
static getInstance(int $obj_id)
determineOffsetAndOrder(bool $a_omit_offset=false)
storeProperty(string $type, string $value)
static getInstance(int $a_usr_id)
static getInstanceByRefId(int $ref_id)
RefineryFactory $refinery
static _lookupLogin(int $a_user_id)