19 declare(strict_types=1);
36 public function __construct(
int $a_group_id,
object $a_parent_obj,
string $a_parent_cmd =
'')
39 $this->group_id = $a_group_id;
40 $this->
setId(
'sc_groups');
41 $this->
access = $DIC->access();
44 $this->
renderer = $DIC->ui()->renderer();
45 $this->uiFactory = $DIC->ui()->factory();
53 public function init(): void
55 $this->
lng->loadLanguageModule(
'sysc');
56 $this->
addColumn($this->
lng->txt(
'title'),
'title',
'60%');
57 $this->
addColumn($this->
lng->txt(
'last_update'),
'last_update_sort',
'20%');
58 $this->
addColumn($this->
lng->txt(
'status'),
'status',
'10%');
61 $this->
setTitle($this->
lng->txt(
'sysc_task_overview'));
63 $this->
setRowTemplate(
'tpl.syscheck_tasks_row.html',
'components/ILIAS/SystemCheck');
70 protected function fillRow(array $a_set): void
72 $this->tpl->setVariable(
'VAL_TITLE', (
string) ($a_set[
'title'] ??
''));
73 $this->tpl->setVariable(
'VAL_DESC', (
string) ($a_set[
'description'] ??
''));
75 $status = (
int) ($a_set[
'status'] ?? 0);
79 $this->tpl->setVariable(
'VAL_STATUS_SUCCESS', $text);
83 $this->tpl->setCurrentBlock(
'warning');
84 $this->tpl->setVariable(
'VAL_STATUS_WARNING', $text);
85 $this->tpl->parseCurrentBlock();
89 $this->tpl->setVariable(
'VAL_STATUS_STANDARD', $text);
93 $this->tpl->setVariable(
'VAL_LAST_UPDATE', (
string) ($a_set[
'last_update'] ??
''));
96 if ($this->
access->checkAccess(
'write',
'', $this->parent_obj->getObject()->getRefId())) {
97 $id = (
int) ($a_set[
'id'] ?? 0);
99 $dropDownItems = array();
103 $this->
ctrl->setParameterByClass(get_class($task_handler),
'task_id',
$id);
104 foreach ($task_handler->getActions() as $actions) {
105 $dropDownItems[] = $this->uiFactory->button()->shy(
106 (
string) ($actions[
'txt'] ??
''),
107 $this->
ctrl->getLinkTargetByClass(get_class($task_handler), (
string) ($actions[
'command'] ??
''))
110 $dropDown = $this->uiFactory->dropdown()->standard($dropDownItems)
111 ->withLabel($this->
lng->txt(
'actions'));
112 $this->tpl->setVariable(
'ACTIONS', $this->
renderer->render($dropDown));
123 if (!$task->isActive()) {
128 $item[
'id'] = $task->getId();
129 $item[
'title'] = $task_handler->getTitle();
130 $item[
'description'] = $task_handler->getDescription();
132 $item[
'last_update_sort'] = $task->getLastUpdate()->get(
IL_CAL_UNIX);
133 $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 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)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=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)
Table GUI for system check task overview.
__construct(int $a_group_id, object $a_parent_obj, string $a_parent_cmd='')