3 declare(strict_types=1);
26 public function __construct(
object $a_parent_obj,
string $a_parent_cmd =
'')
28 $this->
setId(
'sc_groups');
32 public function init(): void
34 $this->
lng->loadLanguageModule(
'sysc');
35 $this->
addColumn($this->
lng->txt(
'title'),
'title',
'60%');
36 $this->
addColumn($this->
lng->txt(
'last_update'),
'last_update_sort',
'20%');
37 $this->
addColumn($this->
lng->txt(
'sysc_completed_num'),
'completed',
'10%');
38 $this->
addColumn($this->
lng->txt(
'sysc_failed_num'),
'failed',
'10%');
43 $this->
setRowTemplate(
'tpl.syscheck_groups_row.html',
'Services/SystemCheck');
47 protected function fillRow(array $a_set): void
49 $this->tpl->setVariable(
'VAL_TITLE', (
string) ($a_set[
'title'] ??
''));
51 $id = (
int) ($a_set[
'id'] ?? 0);
53 $this->tpl->setVariable(
55 $this->
ctrl->getLinkTarget($this->getParentObject(),
'showGroup')
58 $this->tpl->setVariable(
'VAL_DESC', (
string) ($a_set[
'description'] ??
''));
59 $this->tpl->setVariable(
'VAL_LAST_UPDATE', (
string) ($a_set[
'last_update'] ??
''));
60 $this->tpl->setVariable(
'VAL_COMPLETED', (
int) ($a_set[
'completed'] ?? 0));
61 $this->tpl->setVariable(
'VAL_FAILED', (
int) ($a_set[
'failed'] ?? 0));
63 switch ($a_set[
'status']) {
65 $this->tpl->setVariable(
'STATUS_CLASS',
'smallgreen');
68 $this->tpl->setVariable(
'STATUS_CLASS',
'warning');
76 $list->setSelectionHeaderClass(
'small');
77 $list->setItemLinkClass(
'small');
78 $list->setId(
'sysc_' .
$id);
79 $list->setListTitle($this->
lng->txt(
'actions'));
83 $this->
lng->txt(
'show'),
87 $this->tpl->setVariable(
'ACTIONS', $list->getHTML());
96 $item[
'id'] = $group->getId();
100 $item[
'title'] = $task_gui->getGroupTitle();
101 $item[
'description'] = $task_gui->getGroupDescription();
102 $item[
'status'] = $group->getStatus();
109 $item[
'last_update_sort'] = $last_update->get(
IL_CAL_UNIX);
setFormAction(string $a_form_action, bool $a_multipart=false)
static lookupLastUpdate(int $a_grp_id)
static lookupFailed(int $a_grp_id)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(object $a_parent_obj, string $a_parent_cmd='')
static lookupCompleted(int $a_grp_id)
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getComponentTaskGUIForGroup(int $a_group_id, ?int $a_task_id=null)
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)