5 include_once
'./Services/Table/classes/class.ilTable2GUI.php';
23 public function __construct($a_group_id, $a_parent_obj, $a_parent_cmd =
"")
25 $this->group_id = $a_group_id;
26 $this->
setId(
'sc_groups');
28 parent::__construct($a_parent_obj, $a_parent_cmd);
48 $lng->loadLanguageModule(
'sysc');
49 $this->
addColumn($this->lng->txt(
'title'),
'title',
'60%');
50 $this->
addColumn($this->lng->txt(
'last_update'),
'last_update_sort',
'20%');
51 $this->
addColumn($this->lng->txt(
'status'),
'status',
'10%');
52 $this->
addColumn($this->lng->txt(
'actions'),
'',
'10%');
54 $this->
setTitle($this->lng->txt(
'sysc_task_overview'));
56 $this->
setRowTemplate(
'tpl.syscheck_tasks_row.html',
'Services/SystemCheck');
57 $this->
setFormAction($ilCtrl->getFormAction($this->getParentObject()));
67 $this->tpl->setVariable(
'VAL_TITLE',
$row[
'title']);
68 $this->tpl->setVariable(
'VAL_DESC',
$row[
'description']);
70 include_once
'./Services/SystemCheck/classes/class.ilSCUtils.php';
72 switch(
$row[
'status'])
75 $this->tpl->setVariable(
'VAL_STATUS_SUCCESS',
$text);
79 $this->tpl->setCurrentBlock(
'warning');
80 $this->tpl->setVariable(
'VAL_STATUS_WARNING',
$text);
81 $this->tpl->parseCurrentBlock();
85 $this->tpl->setVariable(
'VAL_STATUS_STANDARD',
$text);
89 $this->tpl->setVariable(
'VAL_LAST_UPDATE',
$row[
'last_update']);
92 include_once
'./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php';
94 $list->setSelectionHeaderClass(
'small');
95 $list->setItemLinkClass(
'small');
96 $list->setId(
'sysc_'.
$row[
'id']);
97 $list->setListTitle($this->lng->txt(
'actions'));
99 include_once
'./Services/SystemCheck/classes/class.ilSCComponentTaskFactory.php';
102 $GLOBALS[
'ilCtrl']->setParameterByClass(get_class($task_handler),
'task_id',
$row[
'id']);
103 foreach((
array) $task_handler->getActions() as $actions)
108 $GLOBALS[
'ilCtrl']->getLinkTargetByClass(
109 get_class($task_handler),
115 $this->tpl->setVariable(
'ACTIONS',$list->getHTML());
125 include_once
'./Services/SystemCheck/classes/class.ilSCTasks.php';
128 include_once
'./Services/SystemCheck/classes/class.ilSCComponentTaskFactory.php';
133 $item[
'id'] = $task->getId();
134 $item[
'title'] = $task_handler->getTitle();
135 $item[
'description'] = $task_handler->getDescription();
137 $item[
'last_update_sort'] = $task->getLastUpdate()->get(
IL_CAL_UNIX);
138 $item[
'status'] = $task->getStatus();
getGroupId()
Get group id.
$GLOBALS['loaded']
Global hash that tracks already loaded includes.
static getComponentTask($a_task_id)
parse()
Parse system check groups.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
static formatDate(ilDateTime $date)
Format a date public.
static getInstanceByGroupId($a_group_id)
Get singleton instance.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
Create styles array
The data for the language used.
User interface class for advanced drop-down selection lists.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__construct($a_group_id, $a_parent_obj, $a_parent_cmd="")
Constructor.
static taskStatus2Text($a_status)
Table GUI for system check task overview.
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.