ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilTestQuestionsTableGUI.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 $writeAccess = false;
37  protected $totalPoints = 0;
38  protected $checked_move = false;
39  protected $total = 0;
40 
48  public function __construct($a_parent_obj, $a_parent_cmd, $a_write_access = false, $a_checked_move = false, $a_total = 0)
49  {
50  parent::__construct($a_parent_obj, $a_parent_cmd);
51 
52  global $lng, $ilCtrl;
53 
54  $this->lng = $lng;
55  $this->ctrl = $ilCtrl;
56  $this->total = $a_total;
57 
58  $this->setWriteAccess($a_write_access);
59  $this->setCheckedMove($a_checked_move);
60 
61  $this->setFormName('questionbrowser');
62  $this->setStyle('table', 'fullwidth');
63  $this->addColumn('','f','1%');
64  $this->addColumn($this->lng->txt("tst_question_title"),'title', '');
65  $this->addColumn($this->lng->txt("tst_sequence"),'sequence', '');
66  $this->addColumn($this->lng->txt("description"),'description', '');
67  $this->addColumn($this->lng->txt("tst_question_type"),'type', '');
68  $this->addColumn($this->lng->txt("points"),'', '');
69  $this->addColumn($this->lng->txt("author"),'author', '');
70  $this->addColumn($this->lng->txt("qpl"),'qpl', '');
71 
72  $this->setPrefix('q_id');
73  $this->setSelectAllCheckbox('q_id');
74 
75  if ($this->getWriteAccess() && !$this->getTotal())
76  {
77  $this->addMultiCommand('removeQuestions', $this->lng->txt('remove_question'));
78  $this->addMultiCommand('moveQuestions', $this->lng->txt('move'));
79  if ($this->checked_move)
80  {
81  $this->addMultiCommand('insertQuestionsBefore', $this->lng->txt('insert_before'));
82  $this->addMultiCommand('insertQuestionsAfter', $this->lng->txt('insert_after'));
83  }
84  }
85 
86 
87  $this->setRowTemplate("tpl.il_as_tst_questions_row.html", "Modules/Test");
88 
89  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
90 
91  $this->disable('sort');
92  $this->enable('header');
93  $this->enable('select_all');
94  }
95 
96  function fillHeader()
97  {
98  foreach ($this->column as $key => $column)
99  {
100  if (strcmp($column['text'], $this->lng->txt("points")) == 0)
101  {
102  $this->column[$key]['text'] = $this->lng->txt("points") . "&nbsp;(" . $this->totalPoints . ")";
103  }
104  }
106  }
107 
115  public function fillRow($data)
116  {
117  global $ilUser,$ilAccess;
118 
119  $this->tpl->setVariable("QUESTION_ID", $data["question_id"]);
120  if ($this->getWriteAccess() && !$this->getTotal() && $data["obj_fi"] > 0)
121  {
122  $q_id = $data["question_id"];
123  $qpl_ref_id = current(ilObject::_getAllReferences($data["obj_fi"]));
124  $this->tpl->setVariable("QUESTION_TITLE", "<a href=\"" . $this->ctrl->getLinkTarget($this->getParentObject(), "questions") . "&eqid=$q_id&eqpl=$qpl_ref_id" . "\">" . $data["title"] . "</a>");
125  }
126  else
127  {
128  $this->tpl->setVariable("QUESTION_TITLE", $data["title"]);
129  }
130  $this->tpl->setVariable("QUESTION_SEQUENCE", $this->lng->txt("tst_sequence"));
131 
132  if ($this->getWriteAccess() && !$this->getTotal())
133  {
134  if ($data["sequence"] != 1)
135  {
136  $this->tpl->setVariable("BUTTON_UP", "<a href=\"" . $this->ctrl->getLinkTarget($this->getParentObject(), "questions") . "&up=".$data["question_id"]."\"><img src=\"" . ilUtil::getImagePath("a_up.gif") . "\" alt=\"" . $this->lng->txt("up") . "\" border=\"0\" /></a>");
137  }
138  if ($data["sequence"] != count($this->getData()))
139  {
140  $this->tpl->setVariable("BUTTON_DOWN", "<a href=\"" . $this->ctrl->getLinkTarget($this->getParentObject(), "questions") . "&down=".$data["question_id"]."\"><img src=\"" . ilUtil::getImagePath("a_down.gif") . "\" alt=\"" . $this->lng->txt("down") . "\" border=\"0\" /></a>");
141  }
142  }
143  $this->tpl->setVariable("QUESTION_COMMENT", $data["description"]);
144  include_once "./Modules/TestQuestionPool/classes/class.assQuestion.php";
145  $this->tpl->setVariable("QUESTION_TYPE", assQuestion::_getQuestionTypeName($data["type_tag"]));
146  $this->tpl->setVariable("QUESTION_POINTS", $data["points"]);
147  $this->totalPoints += $data["points"];
148  $this->tpl->setVariable("QUESTION_AUTHOR", $data["author"]);
149  $this->tpl->setVariable("QUESTION_POOL", ilObject::_lookupTitle($data["obj_fi"]));
150  }
151 
152  public function setWriteAccess($value)
153  {
154  $this->writeAccess = $value;
155  }
156 
157  public function getWriteAccess()
158  {
159  return $this->writeAccess;
160  }
161 
162  public function setCheckedMove($value)
163  {
164  $this->checked_move = $value;
165  }
166 
167  public function getCheckedMove()
168  {
169  return $this->checked_move;
170  }
171 
172  public function setTotal($value)
173  {
174  $this->total = $value;
175  }
176 
177  public function getTotal()
178  {
179  return $this->total;
180  }
181 }
182 ?>