ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilTestInviteUsersTableGUI.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('inviteusers');
37 $this->setStyle('table', 'fullwidth');
38
39 $this->addColumn('', 'f', '1%');
40 $this->addColumn($this->lng->txt("login"), 'login', '');
41 $this->addColumn($this->lng->txt("firstname"), 'firstname', '');
42 $this->addColumn($this->lng->txt("lastname"), 'lastname', '');
43 $this->addColumn($this->lng->txt("clientip"), 'clientip', '');
44
45 $this->setTitle($this->lng->txt('search_users'), 'icon_usr.svg', $this->lng->txt('usr'));
46
47 $this->setRowTemplate("tpl.il_as_tst_invite_users_row.html", "Modules/Test");
48
49 $this->addMultiCommand('addParticipants', $this->lng->txt('add'));
50
51 $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
52
53 $this->setDefaultOrderField("login");
54 $this->setDefaultOrderDirection("asc");
55 $this->setPrefix('user_select');
56 $this->setSelectAllCheckbox('user_select');
57
58 $this->enable('header');
59 $this->enable('sort');
60 $this->enable('select_all');
61 }
62
70 public function fillRow($data)
71 {
72 $this->tpl->setVariable("USER_ID", $data['usr_id']);
73 $this->tpl->setVariable("LOGIN", $data['login']);
74 $this->tpl->setVariable("FIRSTNAME", $data['firstname']);
75 $this->tpl->setVariable("LASTNAME", $data['lastname']);
76 $this->tpl->setVariable("CLIENT_IP", $data['clientip']);
77 }
78}
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