3 declare(strict_types=0);
29 protected array
$types = array(
"min",
"avg",
"max");
45 ?
object $a_parent_obj,
47 array $a_preselect = null,
48 bool $a_is_chart =
false,
49 bool $a_is_details =
false 51 $this->preselected = $a_preselect;
52 $this->is_chart = $a_is_chart;
53 $this->is_details = $a_is_details;
55 $this->
setId(
"lpobjstatlptbl");
59 public function init(): void
61 if (!$this->is_details) {
64 $this->
addColumn($this->
lng->txt(
"trac_title"),
"title");
67 $column_definition = $all_columns[$col_name];
69 $column_definition[
'txt'],
70 $column_definition[
'sortable'] ? $column_definition[
'field'] :
'',
71 $column_definition[
'width']
81 if (strpos($this->
filter[
"yearmonth"],
"-") ===
false) {
84 ) as $num => $caption) {
85 if ($this->is_details) {
88 $this->
addColumn($caption,
"month_" . $num);
92 foreach ($this->types as
$type) {
94 $caption =
" " . $this->
lng->txt(
95 "trac_object_stat_lp_" . $type
101 $this->
lng->txt(
"trac_members_short") . $caption,
108 foreach ($this->status as $status) {
109 $icon = $icons->renderIconForStatus($status);
111 foreach ($this->types as $type) {
112 if ($type !=
"avg") {
113 $caption =
$icon .
" " . $this->
lng->txt(
114 "trac_object_stat_lp_" . $type
117 $caption =
$icon .
" Ø";
119 $this->
addColumn($caption, $status .
"_" . $type);
124 if (!$this->is_details) {
125 $this->
setTitle($this->
lng->txt(
"trac_object_stat_lp"));
129 "showLearningProgressGraph",
130 $this->
lng->txt(
"trac_show_graph")
137 $this->
ctrl->getFormAction(
138 $this->getParentObject(),
143 "tpl.lp_object_statistics_lp_row.html",
161 if ($this->is_details) {
170 if ($this->is_details) {
174 $columns[
'obj_id'] = [
176 'txt' => $this->
lng->txt(
'object_id'),
182 $columns[
'reference_ids'] = [
183 'field' =>
'reference_ids',
184 'txt' => $this->
lng->txt(
'trac_reference_ids_column'),
190 $columns[
'paths'] = [
192 'txt' => $this->
lng->txt(
'trac_paths'),
204 $alphabetic_ordering = [
207 if (!in_array($a_field, $alphabetic_ordering)) {
227 $this->
filter[
"type"] =
"crs";
231 $this->
lng->txt(
"trac_title_description"),
234 $ti->setMaxLength(64);
237 $ti->readFromSession();
238 $this->
filter[
"query"] = $ti->getValue();
242 $this->
lng->txt(
"year") .
" / " . $this->
lng->txt(
"month"),
247 $si->readFromSession();
248 if (!$si->getValue()) {
249 $si->setValue(date(
"Y-m"));
251 $this->
filter[
"yearmonth"] = $si->getValue();
253 if (!strpos($this->
filter[
"yearmonth"],
"-")) {
255 $this->
lng->txt(
"trac_figure"),
259 "mem_cnt_max" => $this->
lng->txt(
261 ) .
" " . $this->
lng->txt(
"trac_object_stat_lp_max"),
262 "mem_cnt_avg" => $this->
lng->txt(
"members") .
" Ø",
266 ) .
" " . $this->
lng->txt(
"trac_object_stat_lp_max"),
271 $si->setOptions($options);
273 $si->readFromSession();
274 if (!$si->getValue()) {
275 $si->setValue(
"mem_cnt_max");
277 $this->
filter[
"measure"] = $si->getValue();
282 if ($this->is_details) {
283 $this->filters = array();
290 $all_status = array_merge(array(
"mem_cnt"), $this->status);
299 $objects = array_keys($objects);
301 $yearmonth = explode(
"-", $this->
filter[
"yearmonth"]);
302 if (
sizeof($yearmonth) == 1) {
307 $obj_id = $item[
"obj_id"];
308 if (!isset(
$data[$obj_id])) {
309 $data[$obj_id][
"obj_id"] = $obj_id;
315 $measure_type = substr($this->
filter[
"measure"], -3);
316 $measure_field = substr($this->
filter[
"measure"], 0, -4);
317 $value = $item[$measure_field .
"_" . $measure_type];
318 $idx = $item[
"yyyy"] .
"-" . str_pad(
324 $data[$obj_id][
"month_" . $idx] = $value;
327 if ($this->is_chart) {
332 $num_string = explode(
'-', $num);
333 $num = (
int) array_pop($num_string);
340 $idx = $yearmonth[0] .
353 $this->chart_data[$item[
"obj_id"]][$idx] = $item;
364 $obj_id = $item[
"obj_id"];
365 if (!isset(
$data[$obj_id])) {
366 $data[$obj_id][
"obj_id"] = $obj_id;
374 foreach ($all_status as $status) {
376 if (is_numeric($status)) {
377 $field = $this->status_map[
$status];
383 foreach ($this->types as
$type) {
384 $value = $item[$field .
"_" .
$type];
385 $data[$obj_id][$status .
"_" .
$type] = $value;
390 if ($this->is_chart) {
398 $this->chart_data[$item[
"obj_id"]][$item[
"dd"]] = $item;
404 foreach ($objects as $obj_id) {
405 if (!isset(
$data[$obj_id])) {
406 $data[$obj_id][
"obj_id"] = $obj_id;
418 $all_status = array_merge(array(
"mem_cnt"), $this->status);
422 $this->
filter[
"yearmonth"]
424 $month =
"month_" . $item[
"yyyy"] .
"-" . str_pad(
431 foreach ($all_status as $status) {
433 if ($status !=
"mem_cnt") {
434 $field = $this->status_map[
$status];
439 foreach ($this->types as
$type) {
440 $value = $item[$field .
"_" .
$type];
441 $idx = $item[
"yyyy"] .
"-" . str_pad(
447 $data[$status .
"_" .
$type][
"month_" . $idx] = $value;
455 foreach (array_keys(
$data) as $figure) {
456 $status = substr($figure, 0, -4);
457 $type = substr($figure, -3);
459 if ($status !=
"mem_cnt") {
463 $icon = $icons->renderIconForStatus((
int) $status);
464 $text =
$icon .
" " . $text;
466 $text = $this->
lng->txt(
"members");
468 if (
$type !=
"avg") {
469 $caption = $text .
" " . $this->
lng->txt(
470 "trac_object_stat_lp_" .
$type 473 $caption = $text .
" Ø";
475 $data[$figure][
"figure"] = $caption;
481 protected function initRow(array &$a_row): void
483 foreach ($this->types as
$type) {
484 $a_row[
"mem_cnt_" .
$type] = null;
486 foreach ($this->status as $status) {
487 foreach ($this->types as $type) {
488 $a_row[$status .
"_" .
$type] = null;
496 protected function fillRow(array $a_set): void
500 $ilCtrl = $DIC[
'ilCtrl'];
502 if (!$this->is_details) {
506 if (strpos($this->
filter[
"yearmonth"],
"-") ===
false) {
507 $this->
ctrl->setParameter(
514 "showLearningProgressDetails" 516 $a_set[
"title"] .=
" (<a href=\"#\" onclick=\"ilObjStat.showLPDetails(event, '" .
$url .
"');\">Details</a>)";
517 $this->
ctrl->setParameter($this->parent_obj,
"item_id",
"");
522 $this->tpl->setVariable(
'OBJ_ID_COL_VALUE', (
string) $a_set[
'obj_id']);
525 $this->tpl->setVariable(
'REF_IDS', implode(
', ', $a_set[
'reference_ids']));
529 foreach ($a_set[
'reference_ids'] as $reference_id) {
531 $path_gui->enableTextOnly(
false);
532 $path_gui->enableHideLeaf(
false);
533 $path_gui->setUseImages(
true);
536 $this->tpl->setVariable(
'PATHS', implode(
'<br />', $paths));
538 $this->tpl->setCurrentBlock(
"checkbox");
539 $this->tpl->setVariable(
"OBJ_ID", $a_set[
"obj_id"]);
540 $this->tpl->setVariable(
544 $this->tpl->setVariable(
"ICON_ALT", $this->
lng->txt(
$type));
545 $this->tpl->setVariable(
"TITLE_TEXT", $a_set[
"title"]);
546 if ($this->preselected && in_array(
550 $this->tpl->setVariable(
552 " checked=\"checked\"" 555 $this->tpl->parseCurrentBlock();
557 $this->tpl->setCurrentBlock(
"details");
558 $this->tpl->setVariable(
"TXT_FIGURE", $a_set[
"figure"]);
559 $this->tpl->parseCurrentBlock();
562 $this->tpl->setCurrentBlock(
"item");
564 if (strpos($this->
filter[
"yearmonth"],
"-") ===
false) {
568 $value = $this->
anonymizeValue((
int) ($a_set[
"month_" . $num] ?? 0));
569 $this->tpl->setVariable(
"ITEM_VALUE", $value);
570 $this->tpl->parseCurrentBlock();
573 foreach ($this->types as
$type) {
574 $this->tpl->setVariable(
577 (
int) ($a_set[
"mem_cnt_" . $type] ?? 0)
580 $this->tpl->parseCurrentBlock();
582 foreach ($this->status as $status) {
583 foreach ($this->types as $type) {
584 $this->tpl->setVariable(
587 (
int) ($a_set[$status .
"_" . $type] ?? 0)
590 $this->tpl->parseCurrentBlock();
596 public function getGraph(array $a_graph_items): string
598 $a_graph_items = array(array_pop($a_graph_items));
601 $chart->setSize(
"700",
"500");
604 $chart->setLegend($legend);
607 $custom_order = array(
618 $chart->setColors(array());
621 foreach ($this->chart_data as $object_id => $days) {
622 if (in_array($object_id, $a_graph_items)) {
624 foreach ($custom_order as $status => $colors) {
625 $series[
$status] = $chart->getDataInstance(
631 $chart_colors[] = $colors[0];
633 $chart->setColors($chart_colors);
635 if (strpos($this->
filter[
"yearmonth"],
"-") ===
false) {
636 $x_axis = $this->
lng->txt(
"month");
641 $this->
filter[
"yearmonth"]
644 for ($loop = 1; $loop < 32; $loop++) {
645 $item_day = $month .
"-" . str_pad(
651 foreach (array_keys($custom_order) as $status) {
652 if (isset($days[$item_day])) {
654 $value = (
int) $days[$item_day][$this->status_map[$status] .
"_avg"];
658 $max_value = max($max_value, $value);
660 $series[
$status]->addPoint($counter, $value);
666 $x_axis = $this->
lng->txt(
"day");
667 for ($loop = 1; $loop < 32; $loop++) {
668 foreach (array_keys($custom_order) as $status) {
669 if (isset($days[$loop])) {
671 $value = (
int) $days[$loop][$this->status_map[$status] .
"_avg"];
675 $max_value = max($max_value, $value);
677 $series[
$status]->addPoint($loop, $value);
682 foreach (array_keys($custom_order) as $status) {
683 $chart->addData($series[$status]);
691 if (strpos($this->
filter[
"yearmonth"],
"-") ===
false) {
694 $this->
filter[
"yearmonth"],
697 $labels[$counter] = $caption;
701 for ($loop = 1; $loop < 32; $loop++) {
702 $labels[$loop] = $loop .
".";
705 $chart->setTicks($labels, $value_ticks,
true);
707 return $chart->getHTML();
719 $tpl->addJavascript(
"./Services/Tracking/js/ilObjStat.js");
const LP_STATUS_COMPLETED_NUM
buildValueScale(int $a_max_value, bool $a_anonymize=false, bool $a_format_seconds=false)
Creates a path for a start and endnode.
__construct(?object $a_parent_obj, string $a_parent_cmd, array $a_preselect=null, bool $a_is_chart=false, bool $a_is_details=false)
Constructor.
getCurrentFilter(bool $as_query=false)
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
setEnableTitle(bool $a_enabletitle)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setResetCommand(string $a_val, string $a_caption="")
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.
const LP_STATUS_IN_PROGRESS_NUM
static getInstance(int $variant=ilLPStatusIcons::ICON_VARIANT_DEFAULT, ?\ILIAS\UI\Renderer $renderer=null, ?\ILIAS\UI\Factory $factory=null)
setDisableFilterHiding(bool $a_val=true)
fillRow(array $a_set)
Fill table row.
getGraph(array $a_graph_items)
numericOrdering(string $a_field)
anonymizeValue($a_value, bool $a_force_number=false)
isColumnSelected(string $col)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
static _lookupTitle(int $obj_id)
TableGUI class for learning progress.
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setFilterCommand(string $a_val, string $a_caption="")
setDefaultOrderDirection(string $a_defaultorderdirection)
static _getStatusText(int $a_status, ?ilLanguage $a_lng=null)
Get status alt text.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
getDetailItems(int $a_obj_id)
initLearningProgressDetailsLayer()
const LP_STATUS_NOT_ATTEMPTED_NUM
initRepositoryFilter(array $filter)
setEnableNumInfo(bool $a_val)
static initjQuery(ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
getMonthsFilter($a_short=false)
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupType(int $id, bool $reference=false)
addMultiCommand(string $a_cmd, string $a_text)
isForwardingToFormDispatcher()
setEnableHeader(bool $a_enableheader)
const LP_STATUS_FAILED_NUM
static getInstanceByType(int $a_type, string $a_id)
static getObjectLPStatistics(array $a_obj_ids, int $a_year, int $a_month=null, bool $a_group_by_day=false)
static initOverlay(?ilGlobalTemplateInterface $a_main_tpl=null)
Init YUI Overlay module used in Modules/Test, Services/TermsOfService, Services/Tracking, Services/UIComponent.