ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTrSummaryTableGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Services/Tracking/classes/class.ilLPTableBaseGUI.php");
5 
16 {
17 
21  protected $dic;
22 
26  public function __construct($a_parent_obj, $a_parent_cmd, $a_ref_id, $a_print_mode = false)
27  {
28  global $DIC;
29 
30  $ilCtrl = $DIC['ilCtrl'];
31  $objDefinition = $DIC['objDefinition'];
32 
33  $this->setId("trsmy");
34  $this->dic = $DIC;
35  $this->ref_id = $a_ref_id;
36  $this->obj_id = ilObject::_lookupObjId($a_ref_id);
37  $this->is_root = ($a_ref_id == ROOT_FOLDER_ID);
38 
39  if (!$this->is_root) {
40  // #17084 - are we multi-object or not?
41  // we cannot parse type filter (too complicated)
42  $type = ilObject::_lookupType($this->obj_id);
43  if (!$objDefinition->isContainer($type)) {
44  $this->type = $type;
45  include_once './Services/Object/classes/class.ilObjectLP.php';
46  $this->olp = ilObjectLP::getInstance($this->obj_id);
47  }
48  }
49 
50  parent::__construct($a_parent_obj, $a_parent_cmd);
51 
52  if ($a_print_mode) {
53  $this->setPrintMode(true);
54  }
55 
56  $this->parseTitle($this->obj_id, "trac_summary");
57  $this->setLimit(9999);
58  $this->setShowTemplates(true);
59  $this->setExportFormats(array(self::EXPORT_CSV, self::EXPORT_EXCEL));
60 
61  $this->addColumn($this->lng->txt("title"), "title");
62  $this->setDefaultOrderField("title");
63 
64  $labels = $this->getSelectableColumns();
65  foreach ($this->getSelectedColumns() as $c) {
66  $this->addColumn($labels[$c]["txt"], $c);
67  }
68 
69  if ($this->is_root) {
70  $this->addColumn($this->lng->txt("path"));
71  $this->addColumn($this->lng->txt("action"));
72  }
73 
74 
75  // $this->setExternalSorting(true);
76  $this->setEnableHeader(true);
77  $this->setFormAction($ilCtrl->getFormActionByClass(get_class($this)));
78  $this->setRowTemplate("tpl.trac_summary_row.html", "Services/Tracking");
79  $this->initFilter();
80 
81  $this->getItems($a_parent_obj->getObjId(), $a_ref_id);
82  }
83 
84  public function getSelectableColumns()
85  {
86  global $DIC;
87 
88  $lng = $DIC['lng'];
89  $ilSetting = $DIC['ilSetting'];
90 
91  $lng_map = array("user_total" => "users", "first_access_min" => "trac_first_access",
92  "last_access_max" => "trac_last_access", "mark" => "trac_mark", "status" => "trac_status",
93  'status_changed_max' => 'trac_status_changed',
94  "spent_seconds_avg" => "trac_spent_seconds", "percentage_avg" => "trac_percentage",
95  "read_count_sum" => "trac_read_count", "read_count_avg" => "trac_read_count",
96  "read_count_spent_seconds_avg" => "trac_read_count_spent_seconds"
97  );
98 
99 
100  $all = array("user_total");
101  $default = array();
102 
103  // show only if extended data was activated in lp settings
104  include_once 'Services/Tracking/classes/class.ilObjUserTracking.php';
105  $tracking = new ilObjUserTracking();
106  if ($tracking->hasExtendedData(ilObjUserTracking::EXTENDED_DATA_READ_COUNT)) {
107  $all[] = "read_count_sum";
108  $all[] = "read_count_avg";
109  $default[] = "read_count_sum";
110  }
111  if ($tracking->hasExtendedData(ilObjUserTracking::EXTENDED_DATA_SPENT_SECONDS)) {
112  if ($this->is_root || !$this->type || ilObjectLP::supportsSpentSeconds($this->type)) {
113  $all[] = "spent_seconds_avg";
114  $default[] = "spent_seconds_avg";
115  }
116  }
117  if ($tracking->hasExtendedData(ilObjUserTracking::EXTENDED_DATA_READ_COUNT) &&
118  $tracking->hasExtendedData(ilObjUserTracking::EXTENDED_DATA_SPENT_SECONDS)) {
119  if ($this->is_root || !$this->type || ilObjectLP::supportsSpentSeconds($this->type)) {
120  $all[] = "read_count_spent_seconds_avg";
121  // $default[] = "read_count_spent_seconds_avg";
122  }
123  }
124 
125 
126  if ($this->is_root || !$this->type || $this->isPercentageAvailable($this->obj_id)) {
127  $all[] = "percentage_avg";
128  }
129 
130  if ($this->is_root || !$this->olp || $this->olp->isActive()) {
131  $all[] = "status";
132  $all[] = 'status_changed_max';
133  }
134 
135  if ($this->is_root || !$this->type || ilObjectLP::supportsMark($this->type)) {
136  $all[] = "mark";
137  }
138 
139  $privacy = array("gender", "city", "country", "sel_country");
140  foreach ($privacy as $field) {
141  if ($ilSetting->get("usr_settings_course_export_" . $field)) {
142  $all[] = $field;
143  }
144  }
145 
146  $all[] = "language";
147 
148  $default[] = "percentage_avg";
149  $default[] = "status";
150  $default[] = "mark";
151 
152  if ($tracking->hasExtendedData(ilObjUserTracking::EXTENDED_DATA_LAST_ACCESS)) {
153  $all[] = "first_access_min";
154  $all[] = "last_access_max";
155  }
156 
157  $all[] = "create_date_min";
158  $all[] = "create_date_max";
159 
160  $columns = array();
161  foreach ($all as $column) {
162  $l = $column;
163 
164  $prefix = false;
165  if (substr($l, -3) == "avg") {
166  $prefix = "&#216; ";
167  } elseif (substr($l, -3) == "sum" || $l == "user_total") {
168  $prefix = "&#8721; ";
169  }
170 
171  if (isset($lng_map[$l])) {
172  $l = $lng_map[$l];
173  }
174 
175  $txt = $prefix . $lng->txt($l);
176 
177  if (in_array($column, array("read_count_avg", "spent_seconds_avg", "percentage_avg"))) {
178  $txt .= " / " . $lng->txt("user");
179  }
180 
181  $columns[$column] = array(
182  "txt" => $txt,
183  "default" => (in_array($column, $default) ? true :false)
184  );
185  }
186  return $columns;
187  }
188 
192  public function initFilter()
193  {
194  global $DIC;
195 
196  $lng = $DIC['lng'];
197  $ilSetting = $DIC['ilSetting'];
198 
199  if ($this->is_root) {
200  return parent::initBaseFilter(true, false);
201  }
202 
203  // show only if extended data was activated in lp settings
204  include_once 'Services/Tracking/classes/class.ilObjUserTracking.php';
205  $tracking = new ilObjUserTracking();
206 
207  $item = $this->addFilterItemByMetaType(
208  "user_total",
210  true,
211  "&#8721; " . $lng->txt("users")
212  );
213  $this->filter["user_total"] = $item->getValue();
214 
215  if ($tracking->hasExtendedData(ilObjUserTracking::EXTENDED_DATA_READ_COUNT)) {
216  $item = $this->addFilterItemByMetaType(
217  "read_count",
219  true,
220  "&#8721; " . $lng->txt("trac_read_count")
221  );
222  $this->filter["read_count"] = $item->getValue();
223  }
224 
225  if ($tracking->hasExtendedData(ilObjUserTracking::EXTENDED_DATA_SPENT_SECONDS)) {
226  if ($this->is_root || !$this->type || ilObjectLP::supportsSpentSeconds($this->type)) {
227  $item = $this->addFilterItemByMetaType(
228  "spent_seconds",
230  true,
231  "&#216; " . $lng->txt("trac_spent_seconds") . " / " . $lng->txt("user")
232  );
233  $this->filter["spent_seconds"]["from"] = $item->getCombinationItem("from")->getValueInSeconds();
234  $this->filter["spent_seconds"]["to"] = $item->getCombinationItem("to")->getValueInSeconds();
235  }
236  }
237 
238  if ($this->is_root || !$this->type || $this->isPercentageAvailable($this->obj_id)) {
239  $item = $this->addFilterItemByMetaType(
240  "percentage",
242  true,
243  "&#216; " . $lng->txt("trac_percentage") . " / " . $lng->txt("user")
244  );
245  $this->filter["percentage"] = $item->getValue();
246  }
247 
248  if ($this->is_root || !$this->olp || $this->olp->isActive()) {
249  include_once "Services/Tracking/classes/class.ilLPStatus.php";
250  $item = $this->addFilterItemByMetaType("status", ilTable2GUI::FILTER_SELECT, true);
251  $item->setOptions(array("" => $lng->txt("trac_all"),
256  $this->filter["status"] = $item->getValue();
257  if ($this->filter["status"]) {
258  $this->filter["status"]--;
259  }
260 
261  $item = $this->addFilterItemByMetaType("trac_status_changed", ilTable2GUI::FILTER_DATE_RANGE, true);
262  $this->filter["status_changed"] = $item->getDate();
263  }
264 
265  if ($this->is_root || !$this->type || ilObjectLP::supportsMark($this->type)) {
266  $item = $this->addFilterItemByMetaType(
267  "mark",
269  true,
270  $lng->txt("trac_mark")
271  );
272  $this->filter["mark"] = $item->getValue();
273  }
274 
275  if ($ilSetting->get("usr_settings_course_export_gender")) {
276  $item = $this->addFilterItemByMetaType("gender", ilTable2GUI::FILTER_SELECT, true);
277  $item->setOptions(array(
278  "" => $lng->txt("trac_all"),
279  "n" => $lng->txt("gender_n"),
280  "m" => $lng->txt("gender_m"),
281  "f" => $lng->txt("gender_f"),
282  ));
283  $this->filter["gender"] = $item->getValue();
284  }
285 
286  if ($ilSetting->get("usr_settings_course_export_city")) {
287  $item = $this->addFilterItemByMetaType("city", ilTable2GUI::FILTER_TEXT, true);
288  $this->filter["city"] = $item->getValue();
289  }
290 
291  if ($ilSetting->get("usr_settings_course_export_country")) {
292  $item = $this->addFilterItemByMetaType("country", ilTable2GUI::FILTER_TEXT, true);
293  $this->filter["country"] = $item->getValue();
294  }
295 
296  if ($ilSetting->get("usr_settings_course_export_sel_country")) {
297  $item = $this->addFilterItemByMetaType("sel_country", ilTable2GUI::FILTER_SELECT, true);
298  $item->setOptions(array("" => $lng->txt("trac_all")) + $this->getSelCountryCodes());
299  $this->filter["sel_country"] = $item->getValue();
300  }
301 
302  $item = $this->addFilterItemByMetaType("language", ilTable2GUI::FILTER_LANGUAGE, true);
303  $this->filter["language"] = $item->getValue();
304 
305  if ($tracking->hasExtendedData(ilObjUserTracking::EXTENDED_DATA_LAST_ACCESS)) {
306  $item = $this->addFilterItemByMetaType("trac_first_access", ilTable2GUI::FILTER_DATETIME_RANGE, true);
307  $this->filter["first_access"] = $item->getDate();
308 
309  $item = $this->addFilterItemByMetaType("trac_last_access", ilTable2GUI::FILTER_DATETIME_RANGE, true);
310  $this->filter["last_access"] = $item->getDate();
311  }
312 
313  $item = $this->addFilterItemByMetaType("registration_filter", ilTable2GUI::FILTER_DATE_RANGE, true);
314  $this->filter["registration"] = $item->getDate();
315  }
316 
317  public function getSelCountryCodes()
318  {
319  global $DIC;
320 
321  $lng = $DIC['lng'];
322 
323  include_once("./Services/Utilities/classes/class.ilCountry.php");
324  $options = array();
325  foreach (ilCountry::getCountryCodes() as $c) {
326  $options[$c] = $lng->txt("meta_c_" . $c);
327  }
328  asort($options);
329  return $options;
330  }
331 
338  public function getItems($a_object_id, $a_ref_id)
339  {
340  global $DIC;
341 
342  $lng = $DIC['lng'];
343  $rbacsystem = $DIC['rbacsystem'];
344 
345  include_once("./Services/Tracking/classes/class.ilTrQuery.php");
346 
347  // show only selected subobjects for lp mode
348  $preselected_obj_ids = $filter = null;
349 
351  if (
352  $olp->getCurrentMode() == ilLPObjSettings::LP_MODE_COLLECTION_MANUAL ||
353  $olp->getCurrentMode() == ilLPObjSettings::LP_MODE_COLLECTION ||
354  $olp->getCurrentMode() == ilLPObjSettings::LP_MODE_MANUAL_BY_TUTOR
355  ) {
356  $collection = $olp->getCollectionInstance();
357  $preselected_obj_ids[$a_object_id][] = $a_ref_id;
358  foreach ($collection->getItems() as $item => $item_info) {
359  $tmp_lp = ilObjectLP::getInstance(ilObject::_lookupObjId($item_info));
360  if ($tmp_lp->isActive()) {
361  $preselected_obj_ids[ilObject::_lookupObjId($item_info)][] = $item_info;
362  }
363  }
364  $filter = $this->getCurrentFilter();
365  } elseif ($this->is_root) {
366  // using search to get all relevant objects
367  // #8498/#8499: restrict to objects with at least "read_learning_progress" access
368  $preselected_obj_ids = $this->searchObjects($this->getCurrentFilter(true), "read_learning_progress");
369  } else {
370  // using summary filters
371  $filter = $this->getCurrentFilter();
372  }
373 
374 
375 
377  $a_object_id,
378  $a_ref_id,
382  ilUtil::stripSlashes($this->getLimit()),
383  $filter,
384  $this->getSelectedColumns(),
385  $preselected_obj_ids
386  );
387 
388  // build status to image map
389  include_once("./Services/Tracking/classes/class.ilLearningProgressBaseGUI.php");
390  include_once("./Services/Tracking/classes/class.ilLPStatus.php");
391  $valid_status = array(ilLPStatus::LP_STATUS_NOT_ATTEMPTED_NUM,
395  $status_map = array();
397  foreach ($valid_status as $status) {
398  $status_map[$status] = $status_icons->renderIconForStatus($status);
399  }
400 
401  // language map
402  $lng->loadLanguageModule("meta");
403  $languages = array();
404  foreach ($lng->getInstalledLanguages() as $lang_key) {
405  $languages[$lang_key] = $lng->txt("meta_l_" . $lang_key);
406  }
407 
408  $rows = array();
409  foreach ($data["set"] as $idx => $result) {
410  // sessions have no title
411  if ($result["title"] == "" && $result["type"] == "sess") {
412  include_once "Modules/Session/classes/class.ilObjSession.php";
413  $sess = new ilObjSession($result["obj_id"], false);
414  $data["set"][$idx]["title"] = $sess->getFirstAppointment()->appointmentToString();
415  }
416 
417  $data["set"][$idx]["offline"] = ilLearningProgressBaseGUI::isObjectOffline($result["obj_id"], $result["type"]);
418 
419  // #13807
420  if ($result["ref_ids"]) {
421  $valid = false;
422  foreach ($result["ref_ids"] as $check_ref_id) {
423  include_once './Services/Tracking/classes/class.ilLearningProgressAccess.php';
424  if (ilLearningProgressAccess::checkPermission('read_learning_progress', $check_ref_id)) {
425  $valid = true;
426  break;
427  }
428  }
429  if (!$valid) {
430  foreach (array_keys($data["set"][$idx]) as $col_id) {
431  if (!in_array($col_id, array("type", "title", "obj_id", "ref_id", "offline"))) {
432  $data["set"][$idx][$col_id] = null;
433  }
434  }
435  $data["set"][$idx]["privacy_conflict"] = true;
436  continue;
437  }
438  }
439 
440  // percentages
441  $users_no = $result["user_total"];
442  $data["set"][$idx]["country"] = $this->getItemsPercentages($result["country"], $users_no);
443  $data["set"][$idx]["gender"] = $this->getItemsPercentages($result["gender"], $users_no, array(
444  "n" => $lng->txt("gender_n"),
445  "m" => $lng->txt("gender_m"),
446  "f" => $lng->txt("gender_f"),
447  ));
448  $data["set"][$idx]["city"] = $this->getItemsPercentages($result["city"], $users_no);
449  $data["set"][$idx]["sel_country"] = $this->getItemsPercentages($result["sel_country"], $users_no, $this->getSelCountryCodes());
450  $data["set"][$idx]["mark"] = $this->getItemsPercentages($result["mark"], $users_no);
451  $data["set"][$idx]["language"] = $this->getItemsPercentages($result["language"], $users_no, $languages);
452 
453  // if we encounter any invalid status codes, e.g. null, map them to not attempted instead
454  foreach ($result["status"] as $status_code => $status_counter) {
455  // null is cast to ""
456  if ($status_code === "" || !in_array($status_code, $valid_status)) {
457  $result["status"][ilLPStatus::LP_STATUS_NOT_ATTEMPTED_NUM] += $status_counter;
458  unset($result["status"][$status_code]);
459  }
460  }
461  $data["set"][$idx]["status"] = $this->getItemsPercentagesStatus($result["status"], $users_no, $status_map);
462 
463  if (!$this->isPercentageAvailable($result["obj_id"])) {
464  $data["set"][$idx]["percentage_avg"] = null;
465  }
466  }
467 
468  $this->setMaxCount($data["cnt"]);
469  $this->setData($data["set"]);
470  }
471 
481  protected function getItemsPercentages(array $data = null, $overall, array $value_map = null, $limit = 3)
482  {
483  global $DIC;
484 
485  $lng = $DIC['lng'];
486 
487  if (!$overall) {
488  return false;
489  }
490 
491  $result = [];
492 
493  if ($data) {
494  if (is_array($data) && count($data) < $limit) {
495  $limit = count($data);
496  }
497  if (is_array($data) && (count($data) == $limit + 1)) {
498  ++$limit;
499  }
500  $counter = $others_counter = 0;
501  $others_sum = $overall;
502  $all_sum = 0;
503  foreach ($data as $id => $count) {
504  $counter++;
505  $all_sum += $count;
506  if ($counter <= $limit) {
507  $caption = $id;
508 
509  if ($value_map && isset($value_map[$id])) {
510  $caption = $value_map[$id];
511  }
512  if ($caption == "") {
513  $caption = $lng->txt("none");
514  }
515  if (
516  $counter == $limit &&
517  $all_sum < $overall
518  ) {
519  ++$others_counter;
520  continue;
521  }
522  $perc = round($count / $overall * 100);
523  $result[] = array(
524  "caption" => $caption,
525  "absolute" => $count, // ." ".($count > 1 ? $lng->txt("users") : $lng->txt("user")),
526  "percentage" => $perc
527  );
528  $others_sum -= $count;
529  } else {
530  $others_counter++;
531  }
532  }
533 
534  if ($others_counter) {
535  $perc = round($others_sum / $overall * 100);
536  $result[] = array(
537  "caption" => $others_counter . " " . $lng->txt("trac_others"),
538  "absolute" => $others_sum, // ." ".($others_sum > 1 ? $lng->txt("users") : $lng->txt("user")),
539  "percentage" => $perc
540  );
541  }
542  }
543 
544  return $result;
545  }
546 
555  protected function getItemsPercentagesStatus(array $data = null, $overall, array $value_map = null)
556  {
557  global $DIC;
558 
559  $lng = $DIC['lng'];
560 
561  $result = array();
562  foreach ($value_map as $id => $caption) {
563  $count = 0;
564  if (isset($data[$id])) {
565  $count = $data[$id];
566  }
567  $perc = round($count / $overall * 100);
568 
569  $result[] = array(
570  "caption" => $caption,
571  "absolute" => $count,
572  "percentage" => $perc
573  );
574  }
575 
576  return $result;
577  }
578 
579  protected function parseValue($id, $value, $type)
580  {
581  global $DIC;
582 
583  $lng = $DIC['lng'];
584 
585  // get rid of aggregation
586  $pos = strrpos($id, "_");
587  if ($pos !== false) {
588  $function = strtoupper(substr($id, $pos + 1));
589  if (in_array($function, array("MIN", "MAX", "SUM", "AVG", "COUNT"))) {
590  $id = substr($id, 0, $pos);
591  }
592  }
593 
594  if (trim($value) == "") {
595  if ($id == "title") {
596  return "--" . $lng->txt("none") . "--";
597  }
598  return "";
599  }
600  switch ($id) {
601  case 'status_changed':
602  case "first_access":
603  case "create_date":
605  break;
606 
607  case "last_access":
609  break;
610 
611  case "spent_seconds":
612  case "read_count_spent_seconds":
614  $value = "-";
615  } else {
616  $value = ilDatePresentation::secondsToString($value, ($value < 3600 ? true : false)); // #14858
617  }
618  break;
619 
620  case "percentage":
621  if (false /* $this->isPercentageAvailable() */) {
622  $value = "-";
623  } else {
624  $value = $value . "%";
625  }
626  break;
627 
628  case "mark":
630  $value = "-";
631  }
632  break;
633  }
634 
635  return $value;
636  }
637 
641  protected function fillRow($a_set)
642  {
643  global $DIC;
644 
645  $lng = $DIC['lng'];
646  $ilCtrl = $DIC['ilCtrl'];
647 
648  $this->tpl->setVariable("ICON", ilObject::_getIcon($a_set["obj_id"], "tiny", $a_set["type"]));
649  $this->tpl->setVariable("ICON_ALT", $lng->txt($a_set["type"]));
650  $this->tpl->setVariable("TITLE", $a_set["title"]);
651 
652  if ($a_set["offline"] || $a_set["privacy_conflict"]) {
653  $mess = array();
654  if ($a_set["offline"]) {
655  $mess[] = $lng->txt("offline");
656  }
657  if ($a_set["privacy_conflict"]) {
658  $mess[] = $lng->txt("status_no_permission");
659  }
660  $this->tpl->setCurrentBlock("status_bl");
661  $this->tpl->setVariable("TEXT_STATUS", implode(", ", $mess));
662  $this->tpl->parseCurrentBlock();
663  }
664 
665  foreach ($this->getSelectedColumns() as $c) {
666  switch ($c) {
667  case "country":
668  case "gender":
669  case "city":
670  case "language":
671  case "status":
672  case "mark":
673  case "sel_country":
674  $this->renderPercentages($c, $a_set[$c]);
675  break;
676 
677  case "percentage_avg":
678  if ((int) $a_set[$c] === 0 || !$this->isPercentageAvailable($a_set["obj_id"])) {
679  $this->tpl->setVariable(strtoupper($c), "");
680  break;
681  }
682 
683  // no break
684  default:
685  $value = $this->parseValue($c, $a_set[$c], $a_set["type"]);
686  $this->tpl->setVariable(strtoupper($c), $value);
687  break;
688  }
689  }
690 
691  if ($this->is_root) {
692  $path = $this->buildPath($a_set["ref_ids"], false, true);
693  if ($path) {
694  $this->tpl->setCurrentBlock("item_path");
695  foreach ($path as $ref_id => $path_item) {
696  $this->tpl->setVariable("PATH_ITEM", $path_item);
697 
698  if (!$this->anonymized) {
699  $ilCtrl->setParameterByClass($ilCtrl->getCmdClass(), 'details_id', $ref_id);
700  $this->tpl->setVariable("URL_DETAILS", $ilCtrl->getLinkTargetByClass($ilCtrl->getCmdClass(), 'details'));
701  $ilCtrl->setParameterByClass($ilCtrl->getCmdClass(), 'details_id', '');
702  $this->tpl->setVariable("TXT_DETAILS", $lng->txt('trac_participants'));
703  } else {
704  $this->tpl->setVariable("URL_DETAILS", ilLink::_getLink($ref_id, $a_set["type"]));
705  $this->tpl->setVariable("TXT_DETAILS", $lng->txt('view'));
706  }
707 
708  $this->tpl->parseCurrentBlock();
709  }
710  }
711 
712  $this->tpl->setCurrentBlock("item_command");
713  $ilCtrl->setParameterByClass(get_class($this), 'hide', $a_set["obj_id"]);
714  $this->tpl->setVariable("HREF_COMMAND", $ilCtrl->getLinkTargetByClass(get_class($this), 'hide'));
715  $this->tpl->setVariable("TXT_COMMAND", $this->lng->txt('trac_hide'));
716  $this->tpl->parseCurrentBlock();
717 
718  $this->tpl->touchBlock("path_action");
719  } elseif ($a_set["ref_ids"]) { // #18446
720  // #16453
721  include_once './Services/Tree/classes/class.ilPathGUI.php';
722  $path = new ilPathGUI();
723  $path = $path->getPath($this->ref_id, array_pop($a_set["ref_ids"]));
724  if ($path) {
725  $this->tpl->setVariable('COLL_PATH', $this->lng->txt('path') . ': ' . $path);
726  }
727  }
728  }
729 
730  protected function renderPercentages($id, $data)
731  {
732  if ($data) {
733  foreach ($data as $item) {
734  $this->tpl->setCurrentBlock($id . "_row");
735  $this->tpl->setVariable("CAPTION", $item["caption"]);
736  $this->tpl->setVariable("ABSOLUTE", $item["absolute"]);
737  $this->tpl->setVariable("PERCENTAGE", $item["percentage"]);
738  $this->tpl->parseCurrentBlock();
739  }
740  } else {
741  $this->tpl->touchBlock($id);
742  ;
743  }
744  }
745 
746  protected function isArrayColumn($a_name)
747  {
748  if (in_array($a_name, array("country", "gender", "city", "language", "status", "mark", 'sel_country'))) {
749  return true;
750  }
751  return false;
752  }
753 
754  public function numericOrdering($a_field)
755  {
756  $pos = strrpos($a_field, "_");
757  if ($pos !== false) {
758  $function = strtoupper(substr($a_field, $pos + 1));
759  if (in_array($function, array("MIN", "MAX", "SUM", "AVG", "COUNT", "TOTAL"))) {
760  return true;
761  }
762  }
763  return false;
764  }
765 
766  public function isStatusShown() : bool
767  {
768  return in_array('status', $this->getSelectedColumns());
769  }
770 
771  protected function fillHeaderExcel(ilExcel $a_excel, &$a_row)
772  {
773  $a_excel->setCell($a_row, 0, $this->lng->txt("title"));
774 
775  $labels = $this->getSelectableColumns();
776  $cnt = 1;
777  foreach ($this->getSelectedColumns() as $c) {
778  $label = $labels[$c]["txt"];
779  $label = str_replace("&#216;", $this->lng->txt("trac_average"), $label);
780  $label = str_replace("&#8721;", $this->lng->txt("trac_sum"), $label);
781 
782  if (!$this->isArrayColumn($c)) {
783  $a_excel->setCell($a_row, $cnt, $label);
784  $cnt++;
785  } else {
786  if ($c != "status") {
787  $a_excel->setCell($a_row, $cnt, $label . " #1");
788  $a_excel->setCell($a_row, ++$cnt, $label . " #1");
789  $a_excel->setCell($a_row, ++$cnt, $label . " #1 %");
790  $a_excel->setCell($a_row, ++$cnt, $label . " #2");
791  $a_excel->setCell($a_row, ++$cnt, $label . " #2");
792  $a_excel->setCell($a_row, ++$cnt, $label . " #2 %");
793  $a_excel->setCell($a_row, ++$cnt, $label . " #3");
794  $a_excel->setCell($a_row, ++$cnt, $label . " #3");
795  $a_excel->setCell($a_row, ++$cnt, $label . " #3 %");
796  $a_excel->setCell($a_row, ++$cnt, $label . " " . $this->lng->txt("trac_others"));
797  $a_excel->setCell($a_row, ++$cnt, $label . " " . $this->lng->txt("trac_others"));
798  $a_excel->setCell($a_row, ++$cnt, $label . " " . $this->lng->txt("trac_others") . " %");
799  } else {
800  // build status to image map
801  include_once("./Services/Tracking/classes/class.ilLearningProgressBaseGUI.php");
802  include_once("./Services/Tracking/classes/class.ilLPStatus.php");
803  $valid_status = array(ilLPStatus::LP_STATUS_NOT_ATTEMPTED_NUM,
807  $cnt--;
808  foreach ($valid_status as $status) {
810  $a_excel->setCell($a_row, ++$cnt, $text);
811  $a_excel->setCell($a_row, ++$cnt, $text . " %");
812  }
813  }
814  $cnt++;
815  }
816  }
817 
818  $a_excel->setBold("A" . $a_row . ":" . $a_excel->getColumnCoord($cnt) . $a_row);
819  }
820 
821  protected function fillRowExcel(ilExcel $a_excel, &$a_row, $a_set)
822  {
823  $a_excel->setCell($a_row, 0, $a_set["title"]);
824 
825  $cnt = 1;
826  foreach ($this->getSelectedColumns() as $c) {
827  if (!$this->isArrayColumn($c)) {
828  $val = $this->parseValue($c, $a_set[$c], $a_set["type"]);
829  $a_excel->setCell($a_row, $cnt, $val);
830  $cnt++;
831  } else {
832  foreach ((array) $a_set[$c] as $idx => $value) {
833  if ($c == "status") {
834  $a_excel->setCell($a_row, $cnt, (int) $value["absolute"]);
835  $a_excel->setCell($a_row, ++$cnt, $value["percentage"] . "%");
836  } else {
837  $a_excel->setCell($a_row, $cnt, $value["caption"]);
838  $a_excel->setCell($a_row, ++$cnt, (int) $value["absolute"]);
839  $a_excel->setCell($a_row, ++$cnt, $value["percentage"] . "%");
840  }
841  $cnt++;
842  }
843  if (sizeof($a_set[$c]) < 4 && $c != "status") {
844  for ($loop = 4; $loop > sizeof($a_set[$c]); $loop--) {
845  $a_excel->setCell($a_row, $cnt, "");
846  $a_excel->setCell($a_row, ++$cnt, "");
847  $a_excel->setCell($a_row, ++$cnt, "");
848  $cnt++;
849  }
850  }
851  }
852  }
853  }
854 
855  protected function fillHeaderCSV($a_csv)
856  {
857  $a_csv->addColumn($this->lng->txt("title"));
858 
859  $labels = $this->getSelectableColumns();
860  foreach ($this->getSelectedColumns() as $c) {
861  $label = $labels[$c]["txt"];
862  $label = str_replace("&#216;", $this->lng->txt("trac_average"), $label);
863  $label = str_replace("&#8721;", $this->lng->txt("trac_sum"), $label);
864 
865  if (!$this->isArrayColumn($c)) {
866  $a_csv->addColumn($label);
867  } else {
868  if ($c != "status") {
869  $a_csv->addColumn($label . " #1");
870  $a_csv->addColumn($label . " #1");
871  $a_csv->addColumn($label . " #1 %");
872  $a_csv->addColumn($label . " #2");
873  $a_csv->addColumn($label . " #2");
874  $a_csv->addColumn($label . " #2 %");
875  $a_csv->addColumn($label . " #3");
876  $a_csv->addColumn($label . " #3");
877  $a_csv->addColumn($label . " #3 %");
878  $a_csv->addColumn($label . " " . $this->lng->txt("trac_others"));
879  $a_csv->addColumn($label . " " . $this->lng->txt("trac_others"));
880  $a_csv->addColumn($label . " " . $this->lng->txt("trac_others") . " %");
881  } else {
882  // build status to image map
883  include_once("./Services/Tracking/classes/class.ilLearningProgressBaseGUI.php");
884  include_once("./Services/Tracking/classes/class.ilLPStatus.php");
885  $valid_status = array(ilLPStatus::LP_STATUS_NOT_ATTEMPTED_NUM,
889  foreach ($valid_status as $status) {
891  $a_csv->addColumn($text);
892  $a_csv->addColumn($text . " %");
893  }
894  }
895  }
896  }
897 
898  $a_csv->addRow();
899  }
900 
901  protected function fillRowCSV($a_csv, $a_set)
902  {
903  $a_csv->addColumn($a_set["title"]);
904 
905  foreach ($this->getSelectedColumns() as $c) {
906  if (!$this->isArrayColumn($c)) {
907  $val = $this->parseValue($c, $a_set[$c], $a_set["type"]);
908  $a_csv->addColumn($val);
909  } else {
910  foreach ((array) $a_set[$c] as $idx => $value) {
911  if ($c != "status") {
912  $a_csv->addColumn($value["caption"]);
913  }
914  $a_csv->addColumn((int) $value["absolute"]);
915  $a_csv->addColumn($value["percentage"]);
916  }
917  if (sizeof($a_set[$c]) < 4 && $c != "status") {
918  for ($loop = 4; $loop > sizeof($a_set[$c]); $loop--) {
919  $a_csv->addColumn("");
920  $a_csv->addColumn("");
921  $a_csv->addColumn("");
922  }
923  }
924  }
925  }
926 
927  $a_csv->addRow();
928  }
929 }
const LP_STATUS_COMPLETED_NUM
static _getIcon( $a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
Creates a path for a start and endnode.
buildPath($ref_ids)
Build path with deep-link.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setExportFormats(array $formats)
Set available export formats.
const IL_CAL_DATETIME
$c
Definition: cli.php:37
$result
$type
setPrintMode($a_value=false)
Toogle print mode.
const ROOT_FOLDER_ID
Definition: constants.php:30
setShowTemplates($a_value)
Toggle templates.
const LP_STATUS_NOT_ATTEMPTED
static _getStatusText($a_status, $a_lng=null)
Get status alt text.
$valid
getItemsPercentages(array $data=null, $overall, array $value_map=null, $limit=3)
Render data as needed for summary list (based on grouped values)
searchObjects(array $filter, $permission, array $preset_obj_ids=null, $a_check_lp_activation=true)
Search objects that match current filters.
const LP_STATUS_IN_PROGRESS_NUM
static getInstance(int $variant=ilLPStatusIcons::ICON_VARIANT_DEFAULT, ?\ILIAS\UI\Renderer $renderer=null, ?\ILIAS\UI\Factory $factory=null)
addFilterItemByMetaType($id, $type=self::FILTER_TEXT, $a_optional=false, $caption=null)
Add filter by standard type.
fillRowExcel(ilExcel $a_excel, &$a_row, $a_set)
parseTitle($a_obj_id, $action, $a_user_id=false)
const IL_CAL_UNIX
getItems($a_object_id, $a_ref_id)
Build summary item rows for given object and filter(s.
getOrderDirection()
Get order direction.
static checkPermission($a_permission, $a_ref_id, $a_user_id=null)
wrapper for rbac access checks
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
setId($a_val)
Set id.
const LP_STATUS_IN_PROGRESS
fillHeaderExcel(ilExcel $a_excel, &$a_row)
const LP_STATUS_FAILED
const FILTER_DATETIME_RANGE
static secondsToString($seconds, $force_with_seconds=false, $a_lng=null)
converts seconds to string: Long: 7 days 4 hour(s) ...
getColumnCoord($a_col)
Get column "name" from number.
TableGUI class for learning progress.
setBold($a_coords)
Set cell(s) to bold.
getOffset()
Get offset.
static isObjectOffline($a_obj_id, $a_type=null)
const FILTER_DURATION_RANGE
static _lookupObjId($a_id)
global $DIC
Definition: goto.php:24
parseValue($id, $value, $type)
getSelectedColumns()
Get selected columns.
setCell($a_row, $a_col, $a_value, $a_datatype=null)
Set cell value.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static getObjectsSummaryForObject( $a_parent_obj_id, $a_parent_ref_id, $a_order_field="", $a_order_dir="", $a_offset=0, $a_limit=9999, array $a_filters=null, array $a_additional_fields=null, $a_preselected_obj_ids=null)
Get all aggregated tracking data for parent object.
$txt
Definition: error.php:13
__construct($a_parent_obj, $a_parent_cmd, $a_ref_id, $a_print_mode=false)
Constructor.
fillRow($a_set)
Fill table row.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
static _lookupType($a_id, $a_reference=false)
lookup object type
static supportsMark($a_obj_type)
$rows
Definition: xhr_table.php:10
const LP_STATUS_NOT_ATTEMPTED_NUM
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
static supportsSpentSeconds($a_obj_type)
global $ilSetting
Definition: privfeed.php:17
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setEnableHeader($a_enableheader)
Set Enable Header.
static getCountryCodes()
Get country codes (DIN EN 3166-1)
getLimit()
Get limit.
filter()
Definition: filter.php:2
setMaxCount($a_max_count)
set max.
getCurrentFilter($as_query=false)
const LP_STATUS_COMPLETED
static getInstance($a_obj_id)
if(! $in) $columns
Definition: Utf8Test.php:45
getItemsPercentagesStatus(array $data=null, $overall, array $value_map=null)
Render status data as needed for summary list (based on grouped values)
setLimit($a_limit=0, $a_default_limit=0)
const LP_STATUS_FAILED_NUM