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