ILIAS  Release_4_0_x_branch Revision 61816
 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("lastname"),'lastname', '');
61  $this->addColumn($this->lng->txt("firstname"),'firstname', '');
62  $this->addColumn($this->lng->txt("clientip"),'clientip', '');
63  $this->addColumn($this->lng->txt("tst_started"),'started', '');
64  $this->addColumn($this->lng->txt("tst_nr_of_tries_of_user"),'passes', '');
65  $this->addColumn($this->lng->txt("tst_finished"),'finished', '');
66  $this->addColumn($this->lng->txt("last_access"),'access', '');
67  $this->addColumn('','results', '');
68 
69  $this->setTitle($this->lng->txt('tst_participating_users'));
70  $this->setDescription($this->lng->txt("fixed_participants_hint"));
71  $this->setRowTemplate("tpl.il_as_tst_fixed_participants_row.html", "Modules/Test");
72 
73  $this->addMultiCommand('saveClientIP', $this->lng->txt('save'));
74  $this->addMultiCommand('removeParticipant', $this->lng->txt('remove_as_participant'));
75  if (!$this->anonymity)
76  {
77  $this->addMultiCommand('showPassOverview', $this->lng->txt('show_pass_overview'));
78  $this->addMultiCommand('showUserAnswers', $this->lng->txt('show_user_answers'));
79  $this->addMultiCommand('showDetailedResults', $this->lng->txt('show_detailed_results'));
80  }
81  $this->addMultiCommand('deleteSingleUserResults', $this->lng->txt('delete_user_data'));
82 
83  if ($nrOfDatasets)
84  {
85  $this->addCommandButton('deleteAllUserResults', $this->lng->txt('delete_all_user_data'));
86  }
87 
88  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
89 
90  if (!$this->anonymity)
91  {
92  $this->setDefaultOrderField("login");
93  }
94  else
95  {
96  $this->setDefaultOrderField("access");
97  }
98  $this->setDefaultOrderDirection("asc");
99  $this->setPrefix('chbUser');
100  $this->setSelectAllCheckbox('chbUser');
101 
102  $this->enable('header');
103  $this->enable('sort');
104  $this->enable('select_all');
105  }
106 
114  public function fillRow($data)
115  {
116  $finished = "<img border=\"0\" align=\"middle\" src=\"".ilUtil::getImagePath("icon_ok.gif") . "\" alt=\"".$this->lng->txt("ok")."\" />";
117  $started = "<img border=\"0\" align=\"middle\" src=\"".ilUtil::getImagePath("icon_ok.gif") . "\" alt=\"".$this->lng->txt("ok")."\" />" ;
118  $passes = ($data['maxpass']) ? (($data['maxpass'] == 1) ? sprintf($this->lng->txt("pass_finished"), $data['maxpass']) : sprintf($this->lng->txt("passes_finished"), $data['maxpass'])) : '';
119  if (strlen($data['clientip']))
120  {
121  $this->tpl->setVariable("CLIENT_IP", $data['clientip']);
122  }
123  $this->tpl->setVariable("USER_ID", $data['usr_id']);
124  $this->tpl->setVariable("LOGIN", $data['login']);
125  $this->tpl->setVariable("FIRSTNAME", $data['firstname']);
126  $this->tpl->setVariable("LASTNAME", $data['lastname']);
127  $this->tpl->setVariable("STARTED", ($data['started']) ? $started : '');
128  $this->tpl->setVariable("PASSES", $passes);
129  $this->tpl->setVariable("FINISHED", ($data['finished']) ? $finished : '');
130  $this->tpl->setVariable("ACCESS", (strlen($data['access'])) ? $data['access'] : $this->lng->txt('not_yet_accessed'));
131  if ($data['active_id'] > 0)
132  {
133  $this->tpl->setCurrentBlock('results');
134  $this->tpl->setVariable("RESULTS", $data['result']);
135  $this->tpl->setVariable("RESULTS_TEXT", ilUtil::prepareFormOutput($this->lng->txt('tst_show_results')));
136  $this->tpl->parseCurrentBlock();
137  }
138  }
139 }
140 ?>