ILIAS  release_4-3 Revision
 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->initFilter();
55 
56  $this->anonymity = $anonymity;
57  $this->setFormName('participantsForm');
58  $this->setStyle('table', 'fullwidth');
59 
60  $this->addColumn('','','1%');
61  $this->addColumn($this->lng->txt("login"),'login', '');
62  $this->addColumn($this->lng->txt("name"),'name', '');
63  /*
64  $this->addColumn($this->lng->txt("lastname"),'lastname', '');
65  $this->addColumn($this->lng->txt("firstname"),'firstname', '');
66  */
67  $this->addColumn($this->lng->txt("tst_started"),'started', '');
68 
69  // maxpass => passes ;)
70  $this->addColumn($this->lng->txt("tst_nr_of_tries_of_user"),'maxpass', '');
71 
72  $this->addColumn($this->lng->txt("tst_finished"),'finished', '');
73  $this->addColumn($this->lng->txt("last_access"),'access', '');
74  $this->addColumn('','', '');
75 
76  $this->setTitle($this->lng->txt('tst_participating_users'));
77  $this->setRowTemplate("tpl.il_as_tst_participants_row.html", "Modules/Test");
78 
79  if (!$this->anonymity)
80  {
81  $this->addMultiCommand('showPassOverview', $this->lng->txt('show_pass_overview'));
82  $this->addMultiCommand('showUserAnswers', $this->lng->txt('show_user_answers'));
83  $this->addMultiCommand('showDetailedResults', $this->lng->txt('show_detailed_results'));
84  }
85  $this->addMultiCommand('deleteSingleUserResults', $this->lng->txt('delete_user_data'));
86 
87  if ($nrOfDatasets)
88  {
89  $this->addCommandButton('deleteAllUserResults', $this->lng->txt('delete_all_user_data'));
90  }
91 
92  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
93 
94  if (!$this->anonymity)
95  {
96  $this->setDefaultOrderField("login");
97  }
98  else
99  {
100  $this->setDefaultOrderField("access");
101  }
102  $this->setDefaultOrderDirection("asc");
103  $this->setPrefix('chbUser');
104  $this->setSelectAllCheckbox('chbUser');
105 
106  $this->enable('header');
107  $this->enable('sort');
108  $this->enable('select_all');
109  }
110 
118  public function fillRow($data)
119  {
120  $finished = "<img border=\"0\" align=\"middle\" src=\"".ilUtil::getImagePath("icon_ok.png") . "\" alt=\"".$this->lng->txt("ok")."\" />";
121  $started = "<img border=\"0\" align=\"middle\" src=\"".ilUtil::getImagePath("icon_ok.png") . "\" alt=\"".$this->lng->txt("ok")."\" />" ;
122  $passes = ($data['maxpass']) ? (($data['maxpass'] == 1) ? sprintf($this->lng->txt("pass_finished"), $data['maxpass']) : sprintf($this->lng->txt("passes_finished"), $data['maxpass'])) : '';
123  $this->tpl->setVariable("USER_ID", $data['usr_id']);
124  $this->tpl->setVariable("LOGIN", $data['login']);
125  $this->tpl->setVariable("FULLNAME", $data['name']);
126  /*
127  $this->tpl->setVariable("FIRSTNAME", $data['firstname']);
128  $this->tpl->setVariable("LASTNAME", $data['lastname']);
129  */
130  $this->tpl->setVariable("STARTED", ($data['started']) ? $started : '');
131  $this->tpl->setVariable("PASSES", $passes);
132  $this->tpl->setVariable("FINISHED", ($data['finished']) ? $finished : '');
133  $this->tpl->setVariable("ACCESS", ilDatePresentation::formatDate(new ilDateTime($data['access'],IL_CAL_DATETIME)));
134  if ($data['active_id'] > 0)
135  {
136  $this->tpl->setCurrentBlock('results');
137  $this->tpl->setVariable("RESULTS", $data['result']);
138  $this->tpl->setVariable("RESULTS_TEXT", ilUtil::prepareFormOutput($this->lng->txt('tst_show_results')));
139  $this->tpl->parseCurrentBlock();
140  }
141  }
142 
146  function initFilter()
147  {
148  global $lng;
149 
150  // title/description
151  include_once("./Services/Form/classes/class.ilSelectInputGUI.php");
152  $ti = new ilSelectInputGUI($lng->txt("selection"), "selection");
153  $ti->setOptions(
154  array(
155  'all' => $lng->txt('all_participants'),
156  'withSolutions' => $lng->txt('with_solutions_participants'),
157  'withoutSolutions' => $lng->txt('without_solutions_participants')
158  )
159  );
160  $this->addFilterItem($ti);
161  $ti->readFromSession(); // get currenty value from session (always after addFilterItem())
162  $this->filter["title"] = $ti->getValue();
163  }
164 
168  public function numericOrdering($field)
169  {
170  return in_array($field, array(
171  'access', 'maxpass'
172  ));
173  }
174 }