ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilCourseObjectiveQuestionAssignmentTableGUI.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
24include_once('./Modules/Course/classes/class.ilCourseObjectiveQuestion.php');
25include_once('./Services/Table/classes/class.ilTable2GUI.php');
26// begin-patch lok
27include_once './Modules/Course/classes/Objectives/class.ilLOSettings.php';
28// end-patch lok
29
39{
40 // begin-patch lok
41 private $settings = null;
42 // end-patch lok
43
44 private $mode = 0;
45 private $objective = null;
46 private $objective_lm = null;
47
48 private $objective_id = 0;
49 private $course_obj;
50
58 public function __construct($a_parent_obj, $a_course_obj, $a_objective_id, $a_mode)
59 {
60 global $lng,$ilCtrl;
61
62 $this->objective_id = $a_objective_id;
63 $this->course_obj = $a_course_obj;
64
65 // begin-patch lok
66 $this->settings = ilLOSettings::getInstanceByObjId($this->course_obj->getId());
67 // end-patch lok
68
69 $this->lng = $lng;
70 $this->lng->loadLanguageModule('crs');
71 $this->ctrl = $ilCtrl;
72
73 parent::__construct($a_parent_obj, 'materialAssignment');
74 $this->setFormName('assignments');
75 $this->addColumn($this->lng->txt('type'), 'type', "20px");
76 $this->addColumn($this->lng->txt('title'), 'title', '');
77
78 $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
79 $this->setRowTemplate("tpl.crs_objective_list_questions_row.html", "Modules/Course");
80 $this->disable('sort');
81 $this->disable('header');
82 $this->disable('numinfo');
83 $this->disable('select_all');
84
85 #$this->setDefaultOrderField('title');
86 $this->setLimit(200);
87
88 $this->mode = $a_mode;
89 switch ($a_mode) {
91 $this->addCommandButton('updateSelfAssessmentAssignment', $this->lng->txt('crs_wiz_next'));
92 $this->addCommandButton('materialAssignment', $this->lng->txt('crs_wiz_back'));
93 break;
94
96 $this->addCommandButton('updateFinalTestAssignment', $this->lng->txt('crs_wiz_next'));
97 $this->addCommandButton('selfAssessmentAssignment', $this->lng->txt('crs_wiz_back'));
98 break;
99 }
100
102 }
103
104 // begin-patch lok
109 public function getSettings()
110 {
111 return $this->settings;
112 }
113 // end-patch lok
114
122 protected function fillRow($a_set)
123 {
124 foreach ($a_set['sub'] as $sub_data) {
125 if ($a_set['random']) {
126 break;
127 }
128
129
130 if ($sub_data['description']) {
131 $this->tpl->setVariable('QST_DESCRIPTION', $sub_data['description']);
132 }
133 if ($sub_data['qst_txt']) {
134 $txt = $sub_data['qst_txt'];
135 if ($sub_data['qst_points']) {
136 $this->lng->loadLanguageModule('assessment');
137 $txt .= (' (' . $sub_data['qst_points'] . ' ' . $this->lng->txt('points') . ')');
138 }
139
140 $this->tpl->setVariable('QST_DESCRIPTION', $txt);
141 }
142 $this->tpl->setCurrentBlock('qst');
143 $this->tpl->setVariable('QST_TITLE', $sub_data['title']);
144 $this->tpl->setVariable('QST_ID', $a_set['id'] . '_' . $sub_data['id']);
145
146 switch ($this->mode) {
148 if ($this->objective_qst_obj->isSelfAssessmentQuestion($sub_data['id'])) {
149 $this->tpl->setVariable('QST_CHECKED', 'checked="checked"');
150 }
151 break;
152
154 if ($this->objective_qst_obj->isFinalTestQuestion($sub_data['id'])) {
155 $this->tpl->setVariable('QST_CHECKED', 'checked="checked"');
156 }
157 break;
158 }
159 $this->tpl->parseCurrentBlock();
160 }
161 if (count($a_set['sub']) and !$a_set['random']) {
162 $this->tpl->setVariable('TXT_QUESTIONS', $this->lng->txt('objs_qst'));
163 }
164 if ($a_set['random']) {
165 $this->tpl->setVariable('VAL_WARN', $this->lng->txt('crs_objective_random_warn'));
166 }
167
168 $this->tpl->setVariable('VAL_ID', $a_set['id']);
169
170 $this->tpl->setVariable('ROW_TYPE_IMG', ilObject::_getIcon($a_set['obj_id'], "tiny", $a_set['type']));
171 $this->tpl->setVariable('ROW_TYPE_ALT', $this->lng->txt('obj_' . $a_set['type']));
172
173 $this->tpl->setVariable('VAL_TITLE', $a_set['title']);
174 if (strlen($a_set['description'])) {
175 $this->tpl->setVariable('VAL_DESC', $a_set['description']);
176 }
177 }
178
186 public function parse($a_assignable)
187 {
188 global $objDefinition;
189
190 // begin-patch lok
191 $a_assignable = $this->getTestNode();
192 // end-patch lok
193 $tests = array();
194
195 foreach ($a_assignable as $node) {
196 $tmp_data = array();
197 $subobjects = array();
198
199 if (!$tmp_tst = ilObjectFactory::getInstanceByRefId((int) $node['ref_id'], false)) {
200 continue;
201 }
202
203 include_once './Modules/Test/classes/class.ilObjTest.php';
204 $tmp_data['random'] = ilObjTest::_lookupRandomTest($node['obj_id']);
205 $tmp_data['random'] = false;
206
207 foreach ($qst = $this->sortQuestions($tmp_tst->getAllQuestions()) as $question_data) {
208 $tmp_question = ilObjTest::_instanciateQuestion($question_data['question_id']);
209 #$sub['qst_txt'] = $tmp_question->_getQuestionText($question_data['question_id']);
210 $sub['qst_txt'] = '';
211 $sub['qst_points'] = assQuestion::_getMaximumPoints($question_data['question_id']);
212
213 $sub['title'] = $tmp_question->getTitle();
214 $sub['description'] = $tmp_question->getComment();
215 $sub['id'] = $question_data['question_id'];
216
217 $subobjects[] = $sub;
218 }
219 $tmp_data['title'] = $node['title'];
220 $tmp_data['description'] = $node['description'];
221 $tmp_data['type'] = $node['type'];
222 $tmp_data['id'] = $node['child'];
223 $tmp_data['obj_id'] = $node['obj_id'];
224 $tmp_data['sub'] = $subobjects;
225
226 $tests[] = $tmp_data;
227 }
228
229 $this->setData($tests);
230 }
231 // begin-patch lok
232 protected function getTestNode()
233 {
235 $tst_ref_id = $this->getSettings()->getInitialTest();
236 if ($tst_ref_id) {
237 return array($GLOBALS['tree']->getNodeData($tst_ref_id));
238 }
239 }
241 $tst_ref_id = $this->getSettings()->getQualifiedTest();
242 if ($tst_ref_id) {
243 return array($GLOBALS['tree']->getNodeData($tst_ref_id));
244 }
245 }
246 return array();
247 }
248 // end-patch lok
249
256 protected function initQuestionAssignments()
257 {
258 include_once './Modules/Course/classes/class.ilCourseObjectiveQuestion.php';
259 $this->objective_qst_obj = new ilCourseObjectiveQuestion($this->objective_id);
260
261 return true;
262 }
263
271 protected function sortQuestions($a_qst_ids)
272 {
273 return ilUtil::sortArray($a_qst_ids, 'title', 'asc');
274 }
275}
An exception for terminatinating execution or to throw for unit testing.
static _getMaximumPoints($question_id)
Returns the maximum points, a learner can reach answering the question.
TableGUI for question assignments of course objectives.
__construct($a_parent_obj, $a_course_obj, $a_objective_id, $a_mode)
Constructor.
class ilcourseobjectiveQuestion
static getInstanceByObjId($a_obj_id)
get singleton instance
static _instanciateQuestion($question_id)
Creates an instance of a question with a given question id.
static _lookupRandomTest($a_obj_id)
Returns the fact wether the test with passed obj id is a random questions test or not.
static getInstanceByRefId($a_ref_id, $stop_on_error=true)
get an instance of an Ilias object by reference id
static _getIcon( $a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
Class ilTable2GUI.
setData($a_data)
set table data @access public
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setLimit($a_limit=0, $a_default_limit=0)
set max.
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setFormName($a_formname="")
Set Form name.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
disable($a_module_name)
diesables particular modules of table
static sortArray( $array, $a_array_sortby, $a_array_sortorder=0, $a_numeric=false, $a_keep_keys=false)
sortArray
$txt
Definition: error.php:11
$GLOBALS['loaded']
Global hash that tracks already loaded includes.
global $ilCtrl
Definition: ilias.php:18
settings()
Definition: settings.php:2