ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilTestInviteGroupsTableGUI.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
5include_once('./Services/Table/classes/class.ilTable2GUI.php');
6
16{
24 public function __construct($a_parent_obj, $a_parent_cmd)
25 {
26 parent::__construct($a_parent_obj, $a_parent_cmd);
27
28 global $DIC;
29 $lng = $DIC['lng'];
30 $ilCtrl = $DIC['ilCtrl'];
31
32 $this->lng = $lng;
33 $this->ctrl = $ilCtrl;
34 $this->counter = 1;
35
36 $this->setFormName('invitegroups');
37 $this->setStyle('table', 'fullwidth');
38
39 $this->addColumn('', 'f', '1%');
40 $this->addColumn($this->lng->txt("title"), 'title', '');
41 $this->addColumn($this->lng->txt("description"), 'description', '');
42
43 $this->setTitle($this->lng->txt('search_groups'), 'icon_grp.svg', $this->lng->txt('grp'));
44
45 $this->setRowTemplate("tpl.il_as_tst_invite_groups_row.html", "Modules/Test");
46
47 $this->addMultiCommand('addParticipants', $this->lng->txt('add'));
48
49 $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
50
51 $this->setDefaultOrderField("login");
52 $this->setDefaultOrderDirection("asc");
53 $this->setPrefix('group_select');
54 $this->setSelectAllCheckbox('group_select');
55
56 $this->enable('header');
57 $this->enable('sort');
58 $this->enable('select_all');
59 }
60
68 public function fillRow($data)
69 {
70 $this->tpl->setVariable("GROUP_ID", $data['ref_id']);
71 $this->tpl->setVariable("TITLE", $data['title']);
72 $this->tpl->setVariable("DESCRIPTION", $data['description']);
73 }
74}
An exception for terminatinating execution or to throw for unit testing.
Class ilTable2GUI.
setPrefix($a_prefix)
set prefix for sort and offset fields (if you have two or more tables on a page that you want to sort...
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
addMultiCommand($a_cmd, $a_text)
Add Command button.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
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.
setFormName($a_formname="")
Set Form name.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setStyle($a_element, $a_style)
enable($a_module_name)
enables particular modules of table
__construct($a_parent_obj, $a_parent_cmd)
Constructor.
global $ilCtrl
Definition: ilias.php:18
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
$DIC
Definition: xapitoken.php:46