ILIAS  Release_4_1_x_branch Revision 61804
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilTestFixedParticipantsTableGUI.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
24 include_once('./Services/Table/classes/class.ilTable2GUI.php');
25 
35 {
36  protected $anonymity;
37 
45  public function __construct($a_parent_obj, $a_parent_cmd, $anonymity, $nrOfDatasets)
46  {
47  parent::__construct($a_parent_obj, $a_parent_cmd);
48 
49  global $lng, $ilCtrl;
50 
51  $this->lng = $lng;
52  $this->ctrl = $ilCtrl;
53 
54  $this->anonymity = $anonymity;
55  $this->setFormName('export');
56  $this->setStyle('table', 'fullwidth');
57 
58  $this->addColumn('','f','1%');
59  $this->addColumn($this->lng->txt("login"),'login', '');
60  $this->addColumn($this->lng->txt("name"),'name', '');
61  /*
62  $this->addColumn($this->lng->txt("lastname"),'lastname', '');
63  $this->addColumn($this->lng->txt("firstname"),'firstname', '');
64  */
65  $this->addColumn($this->lng->txt("clientip"),'clientip', '');
66  $this->addColumn($this->lng->txt("tst_started"),'started', '');
67  $this->addColumn($this->lng->txt("tst_nr_of_tries_of_user"),'passes', '');
68  $this->addColumn($this->lng->txt("tst_finished"),'finished', '');
69  $this->addColumn($this->lng->txt("last_access"),'access', '');
70  $this->addColumn('','results', '');
71 
72  $this->setTitle($this->lng->txt('tst_participating_users'));
73  $this->setDescription($this->lng->txt("fixed_participants_hint"));
74  $this->setRowTemplate("tpl.il_as_tst_fixed_participants_row.html", "Modules/Test");
75 
76  $this->addMultiCommand('saveClientIP', $this->lng->txt('save'));
77  $this->addMultiCommand('removeParticipant', $this->lng->txt('remove_as_participant'));
78  if (!$this->anonymity)
79  {
80  $this->addMultiCommand('showPassOverview', $this->lng->txt('show_pass_overview'));
81  $this->addMultiCommand('showUserAnswers', $this->lng->txt('show_user_answers'));
82  $this->addMultiCommand('showDetailedResults', $this->lng->txt('show_detailed_results'));
83  }
84  $this->addMultiCommand('deleteSingleUserResults', $this->lng->txt('delete_user_data'));
85 
86  if ($nrOfDatasets)
87  {
88  $this->addCommandButton('deleteAllUserResults', $this->lng->txt('delete_all_user_data'));
89  }
90 
91  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
92 
93  if (!$this->anonymity)
94  {
95  $this->setDefaultOrderField("login");
96  }
97  else
98  {
99  $this->setDefaultOrderField("access");
100  }
101  $this->setDefaultOrderDirection("asc");
102  $this->setPrefix('chbUser');
103  $this->setSelectAllCheckbox('chbUser');
104 
105  $this->enable('header');
106  $this->enable('sort');
107  $this->enable('select_all');
108  }
109 
117  public function fillRow($data)
118  {
119  $finished = "<img border=\"0\" align=\"middle\" src=\"".ilUtil::getImagePath("icon_ok.gif") . "\" alt=\"".$this->lng->txt("ok")."\" />";
120  $started = "<img border=\"0\" align=\"middle\" src=\"".ilUtil::getImagePath("icon_ok.gif") . "\" alt=\"".$this->lng->txt("ok")."\" />" ;
121  $passes = ($data['maxpass']) ? (($data['maxpass'] == 1) ? sprintf($this->lng->txt("pass_finished"), $data['maxpass']) : sprintf($this->lng->txt("passes_finished"), $data['maxpass'])) : '';
122  if (strlen($data['clientip']))
123  {
124  $this->tpl->setVariable("CLIENT_IP", $data['clientip']);
125  }
126  $this->tpl->setVariable("USER_ID", $data['usr_id']);
127  $this->tpl->setVariable("LOGIN", $data['login']);
128  $this->tpl->setVariable("FULLNAME", $data['name']);
129  /*
130  $this->tpl->setVariable("FIRSTNAME", $data['firstname']);
131  $this->tpl->setVariable("LASTNAME", $data['lastname']);
132  */
133  $this->tpl->setVariable("STARTED", ($data['started']) ? $started : '');
134  $this->tpl->setVariable("PASSES", $passes);
135  $this->tpl->setVariable("FINISHED", ($data['finished']) ? $finished : '');
136  $this->tpl->setVariable("ACCESS", (strlen($data['access'])) ? $data['access'] : $this->lng->txt('not_yet_accessed'));
137  if ($data['active_id'] > 0)
138  {
139  $this->tpl->setCurrentBlock('results');
140  $this->tpl->setVariable("RESULTS", $data['result']);
141  $this->tpl->setVariable("RESULTS_TEXT", ilUtil::prepareFormOutput($this->lng->txt('tst_show_results')));
142  $this->tpl->parseCurrentBlock();
143  }
144  }
145 }
146 ?>