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