3 declare(strict_types=1);
30 public function __construct(
int $a_group_id,
object $a_parent_obj,
string $a_parent_cmd =
'')
33 $this->group_id = $a_group_id;
34 $this->
setId(
'sc_groups');
35 $this->
access = $DIC->access();
45 public function init(): void
47 $this->
lng->loadLanguageModule(
'sysc');
48 $this->
addColumn($this->
lng->txt(
'title'),
'title',
'60%');
49 $this->
addColumn($this->
lng->txt(
'last_update'),
'last_update_sort',
'20%');
50 $this->
addColumn($this->
lng->txt(
'status'),
'status',
'10%');
53 $this->
setTitle($this->
lng->txt(
'sysc_task_overview'));
55 $this->
setRowTemplate(
'tpl.syscheck_tasks_row.html',
'Services/SystemCheck');
62 protected function fillRow(array $a_set): void
64 $this->tpl->setVariable(
'VAL_TITLE', (
string) ($a_set[
'title'] ??
''));
65 $this->tpl->setVariable(
'VAL_DESC', (
string) ($a_set[
'description'] ??
''));
67 $status = (
int) ($a_set[
'status'] ?? 0);
71 $this->tpl->setVariable(
'VAL_STATUS_SUCCESS', $text);
75 $this->tpl->setCurrentBlock(
'warning');
76 $this->tpl->setVariable(
'VAL_STATUS_WARNING', $text);
77 $this->tpl->parseCurrentBlock();
81 $this->tpl->setVariable(
'VAL_STATUS_STANDARD', $text);
85 $this->tpl->setVariable(
'VAL_LAST_UPDATE', (
string) ($a_set[
'last_update'] ??
''));
88 if ($this->
access->checkAccess(
'write',
'', $this->parent_obj->getObject()->getRefId())) {
89 $id = (
int) ($a_set[
'id'] ?? 0);
91 $list->setSelectionHeaderClass(
'small');
92 $list->setItemLinkClass(
'small');
93 $list->setId(
'sysc_' .
$id);
94 $list->setListTitle($this->
lng->txt(
'actions'));
98 $this->
ctrl->setParameterByClass(get_class($task_handler),
'task_id',
$id);
99 foreach ($task_handler->getActions() as $actions) {
101 (
string) ($actions[
'txt'] ??
''),
103 $this->
ctrl->getLinkTargetByClass(
104 get_class($task_handler),
105 (
string) ($actions[
'command'] ??
'')
110 $this->tpl->setVariable(
'ACTIONS', $list->getHTML());
121 if (!$task->isActive()) {
126 $item[
'id'] = $task->getId();
127 $item[
'title'] = $task_handler->getTitle();
128 $item[
'description'] = $task_handler->getDescription();
130 $item[
'last_update_sort'] = $task->getLastUpdate()->get(
IL_CAL_UNIX);
131 $item[
'status'] = $task->getStatus();
static getInstanceByGroupId(int $a_group_id)
static taskStatus2Text(int $a_status)
setFormAction(string $a_form_action, bool $a_multipart=false)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static getComponentTask(int $a_task_id)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
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...
__construct(int $a_group_id, object $a_parent_obj, string $a_parent_cmd='')