5 include_once
'./Services/Table/classes/class.ilTable2GUI.php';
22 public function __construct($a_group_id, $a_parent_obj, $a_parent_cmd =
"")
24 $this->group_id = $a_group_id;
25 $this->
setId(
'sc_groups');
27 parent::__construct($a_parent_obj, $a_parent_cmd);
47 $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%');
51 $this->
addColumn($this->lng->txt(
'actions'),
'',
'10%');
53 $this->
setTitle($this->lng->txt(
'sysc_task_overview'));
55 $this->
setRowTemplate(
'tpl.syscheck_tasks_row.html',
'Services/SystemCheck');
56 $this->
setFormAction($ilCtrl->getFormAction($this->getParentObject()));
65 $this->tpl->setVariable(
'VAL_TITLE',
$row[
'title']);
66 $this->tpl->setVariable(
'VAL_DESC',
$row[
'description']);
68 include_once
'./Services/SystemCheck/classes/class.ilSCUtils.php';
70 switch (
$row[
'status']) {
72 $this->tpl->setVariable(
'VAL_STATUS_SUCCESS',
$text);
76 $this->tpl->setCurrentBlock(
'warning');
77 $this->tpl->setVariable(
'VAL_STATUS_WARNING',
$text);
78 $this->tpl->parseCurrentBlock();
82 $this->tpl->setVariable(
'VAL_STATUS_STANDARD',
$text);
86 $this->tpl->setVariable(
'VAL_LAST_UPDATE',
$row[
'last_update']);
89 include_once
'./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php';
91 $list->setSelectionHeaderClass(
'small');
92 $list->setItemLinkClass(
'small');
94 $list->setListTitle($this->lng->txt(
'actions'));
96 include_once
'./Services/SystemCheck/classes/class.ilSCComponentTaskFactory.php';
99 $GLOBALS[
'ilCtrl']->setParameterByClass(get_class($task_handler),
'task_id',
$row[
'id']);
100 foreach ((
array) $task_handler->getActions() as $actions) {
104 $GLOBALS[
'ilCtrl']->getLinkTargetByClass(
105 get_class($task_handler),
111 $this->tpl->setVariable(
'ACTIONS',
$list->getHTML());
121 include_once
'./Services/SystemCheck/classes/class.ilSCTasks.php';
123 include_once
'./Services/SystemCheck/classes/class.ilSCComponentTaskFactory.php';
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();
getGroupId()
Get group id.
if(isset($_REQUEST['delete'])) $list
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false)
Format a date public.
$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 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.
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.
static taskStatus2Text($a_status)
Table GUI for system check task overview.