34 $this->course_obj = $a_course_obj;
39 $this->
lng->loadLanguageModule(
'crs');
42 $this->
addColumn($this->
lng->txt(
'position'),
'position',
'10em');
43 $this->
addColumn($this->
lng->txt(
'title'),
'title',
'20%');
44 $this->
addColumn($this->
lng->txt(
'crs_objective_assigned_materials'),
'materials');
46 $this->
addColumn($this->
lng->txt(
'crs_objective_self_assessment'),
'self');
49 $this->
addColumn($this->
lng->txt(
'crs_objective_tbl_col_final_tsts'),
'final');
51 $this->
addColumn($this->
lng->txt(
'crs_objective_final_test'),
'final');
56 $this->
setRowTemplate(
"tpl.crs_objectives_table_row.html",
"Modules/Course");
60 $this->
enable(
'select_all');
74 protected function fillRow(array $a_set): void
76 $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
77 $this->tpl->setVariable(
'VAL_POSITION', $a_set[
'position']);
80 if ($a_set[
'online']) {
81 $this->tpl->setVariable(
'VAL_ONOFFLINE', $this->
lng->txt(
'online'));
82 $this->tpl->setVariable(
'ONOFFLINE_CLASS',
'smallgreen');
84 $this->tpl->setVariable(
'VAL_ONOFFLINE', $this->
lng->txt(
'offline'));
85 $this->tpl->setVariable(
'ONOFFLINE_CLASS',
'smallred');
88 if ($a_set[
'passes']) {
89 $this->tpl->setVariable(
'PASSES_TXT', $this->
lng->txt(
'crs_loc_passes_info'));
90 $this->tpl->setVariable(
'PASSES_VAL', $a_set[
'passes']);
94 $this->
ctrl->setParameterByClass(
'ilcourseobjectivesgui',
'objective_id', $a_set[
'id']);
95 $this->tpl->setVariable(
'VAL_TITLE_LINKED', $this->
ctrl->getLinkTargetByClass(
'ilcourseobjectivesgui',
'edit'));
98 $this->tpl->setVariable(
'VAL_TITLE', $a_set[
'title']);
99 if (strlen($a_set[
'description'])) {
100 $this->tpl->setVariable(
'VAL_DESC', $a_set[
'description']);
104 foreach ($a_set[
'materials'] as
$data) {
105 if ($data[
'items'] ??
false) {
106 $this->tpl->touchBlock(
'ul_begin');
107 foreach ($data[
'items'] as $pg_st) {
108 $this->tpl->setCurrentBlock(
'st_pg');
109 $this->tpl->setVariable(
'MAT_IMG',
ilObject::_getIcon($pg_st[
'obj_id'],
"tiny", $pg_st[
'type']));
110 $this->tpl->setVariable(
'MAT_ALT', $this->
lng->txt(
'obj_' . $pg_st[
'type']));
112 $this->tpl->setVariable(
'MAT_TITLE',
$title);
113 $this->tpl->parseCurrentBlock();
115 $this->tpl->touchBlock(
'ul_end');
117 $this->tpl->touchBlock(
'new_line');
119 $this->tpl->setCurrentBlock(
'mat_row');
120 $this->tpl->setVariable(
'LM_IMG',
ilObject::_getIcon($data[
'obj_id'],
"tiny", $data[
'type']));
121 $this->tpl->setVariable(
'LM_ALT', $this->
lng->txt(
'obj_' . $data[
'type']));
123 if ($data[
'online']) {
124 $this->tpl->setCurrentBlock(
'mat_online');
125 $this->tpl->setVariable(
'MAT_VAL_ONOFFLINE', $this->
lng->txt(
'online'));
127 $this->tpl->setCurrentBlock(
'mat_offline');
128 $this->tpl->setVariable(
'MAT_VAL_ONOFFLINE', $this->
lng->txt(
'offline'));
130 $this->tpl->parseCurrentBlock();
131 $this->tpl->setCurrentBlock(
'mat_row');
133 if ($data[
'type'] ==
'catr' || $data[
'type'] ==
'crsr' || $data[
'type'] ==
'grpr') {
134 $this->tpl->setVariable(
142 $this->tpl->parseCurrentBlock();
147 if ($this->
getSettings()->worksWithInitialTest()) {
148 if ($this->
getSettings()->hasSeparateInitialTests()) {
149 if ($a_set[
'initial'] ??
false) {
151 $this->tpl->setCurrentBlock(
'initial_test_per_objective');
153 $this->tpl->setVariable(
'IT_ALT', $this->
lng->txt(
'obj_tst'));
155 $this->tpl->setVariable(
'IT_TITLE_LINK',
ilLink::_getLink($a_set[
'initial']));
157 $this->
ctrl->setParameterByClass(
'ilobjtestgui',
'ref_id', $a_set[
'initial']);
158 $this->
ctrl->setParameterByClass(
'ilobjtestgui',
'cmd',
'questionsTabGateway');
159 $this->tpl->setVariable(
161 $this->
ctrl->getLinkTargetByClass(
'ilobjtestgui')
164 $this->tpl->parseCurrentBlock();
166 $this->tpl->touchBlock(
'with_self_test');
169 foreach (($a_set[
'self'] ?? []) as $test) {
171 foreach ((array) ($test[
'questions'] ?? []) as $question) {
172 $this->tpl->setCurrentBlock(
'self_qst_row');
173 $this->tpl->setVariable(
'SELF_QST_TITLE', $question[
'title']);
174 $this->tpl->parseCurrentBlock();
176 if (count($test[
'questions'] ?? []) === 0) {
177 $this->tpl->touchBlock(
'self_qst_row');
182 if (count($a_set[
'self'] ?? []) === 0) {
183 $this->tpl->touchBlock(
'self_qst_row');
193 if ($a_set[
'final'] ??
false) {
195 $this->tpl->setCurrentBlock(
'final_test_per_objective');
197 $this->tpl->setVariable(
'FT_ALT', $this->
lng->txt(
'obj_tst'));
200 $this->
ctrl->setParameterByClass(
'ilobjtestgui',
'ref_id', $a_set[
'final']);
201 $this->
ctrl->setParameterByClass(
'ilobjtestgui',
'cmd',
'questionsTabGateway');
202 $this->tpl->setVariable(
204 $this->
ctrl->getLinkTargetByClass(
'ilobjtestgui')
207 $this->tpl->parseCurrentBlock();
209 $this->tpl->touchBlock(
'with_final_test');
212 foreach ((array) ($a_set[
'final'] ?? []) as $test) {
213 foreach ((array) ($test[
'questions'] ?? []) as $question) {
214 $this->tpl->setCurrentBlock(
'final_qst_row');
215 $this->tpl->setVariable(
'FINAL_QST_TITLE', $question[
'title'] ??
'');
216 $this->tpl->parseCurrentBlock();
218 if (count($test[
'questions'] ?? []) === 0) {
219 $this->tpl->touchBlock(
'final_qst_row');
222 if (count($a_set[
'final'] ?? []) === 0) {
223 $this->tpl->touchBlock(
'final_qst_row');
226 $this->
ctrl->setParameterByClass(
'ilcourseobjectivesgui',
'objective_id', $a_set[
'id']);
227 $this->tpl->setVariable(
'EDIT_LINK', $this->
ctrl->getLinkTargetByClass(
'ilcourseobjectivesgui',
'edit'));
228 $this->tpl->setVariable(
'TXT_EDIT', $this->
lng->txt(
'edit'));
231 $alist->setId($a_set[
'id']);
234 $this->
lng->txt(
'edit'),
236 $this->
ctrl->getLinkTargetByClass(
'ilcourseobjectivesgui',
'edit')
240 $this->
lng->txt(
'crs_objective_action_materials'),
242 $this->
ctrl->getLinkTargetByClass(
'ilcourseobjectivesgui',
'materialAssignment')
247 $this->
lng->txt(
'crs_objective_action_itest'),
249 $this->
ctrl->getLinkTargetByClass(
'ilcourseobjectivesgui',
'selfAssessmentAssignment')
253 if ($this->
getSettings()->hasSeparateQualifiedTests()) {
257 $this->
lng->txt(
'crs_objective_action_qtest'),
259 $this->
ctrl->getLinkTargetByClass(
'ilcourseobjectivesgui',
'finalTestAssignment')
263 $this->
ctrl->setParameterByClass(
'illopagegui',
'objective_id', $a_set[
'id']);
265 $this->
lng->txt(
'crs_edit_lo_introduction'),
267 $this->
ctrl->getLinkTargetByClass(
'illopagegui',
'edit')
270 $this->tpl->setVariable(
'VAL_ACTIONS', $alist->getHTML());
275 public function parse(array $a_objective_ids): void
279 foreach ($a_objective_ids as $objective_id) {
282 $objective_data = [];
283 $objective_data[
'id'] = $objective_id;
284 $objective_data[
'position'] = sprintf(
"%.1f", $position++) * 10;
285 $objective_data[
'title'] = $objective->getTitle();
286 $objective_data[
'description'] = $objective->getDescription();
288 $objective_data[
'online'] = $objective->isActive();
289 $objective_data[
'passes'] = $objective->getPasses();
292 $materials = array();
294 foreach ($ass_materials->getMaterials() as $material) {
298 switch ($material[
'type']) {
301 $materials[$material[
'ref_id']][
'items'][] = $material;
308 $objective_data[
'materials'] = $materials;
313 if ($this->
getSettings()->worksWithInitialTest()) {
314 if ($this->
getSettings()->hasSeparateInitialTests()) {
316 $assignment = $assignments->getAssignmentByObjective(
321 $objective_data[
'initial'] = 0;
323 $test_id = $assignment->getTestRefId();
326 $test_candidate =
$factory->getInstanceByRefId($test_id,
false);
327 if ($test_candidate instanceof
ilObjTest) {
328 $objective_data[
'initial'] = $test_id;
333 $objective_data[
'self'] = [];
335 $this->course_obj->getId(),
344 $test[
'questions'][] = array(
'title' => $qst);
346 $objective_data[
'self'] = array($test);
350 foreach ($question_obj->getSelfAssessmentTests() as $test) {
351 $questions = array();
352 foreach ($question_obj->getQuestionsOfTest($test[
'obj_id']) as $qst) {
356 $tmp_test[
'questions'] = $questions;
358 $tests[] = $tmp_test;
360 $objective_data[
'self'] = $tests;
368 $objective_data[
'final'] = 0;
370 $test_id = $assignment->getTestRefId();
373 $test_candidate =
$factory->getInstanceByRefId($test_id,
false);
374 if ($test_candidate instanceof
ilObjTest) {
375 $objective_data[
'final'] = $test_id;
378 } elseif ($this->
getSettings()->getQualifiedTest()) {
382 $this->course_obj->getId(),
391 $test[
'questions'][] = array(
'title' => $qst);
393 $objective_data[
'final'] = array($test);
397 foreach ($question_obj->getFinalTests() as $test) {
398 $questions = array();
399 foreach ($question_obj->getQuestionsOfTest($test[
'obj_id']) as $qst) {
403 $tmp_test[
'questions'] = $questions;
405 $tests[] = $tmp_test;
407 $objective_data[
'final'] = $tests;
static _lookupTargetTitle(int $a_obj_id)
static lookupQplBySequence(int $a_test_ref_id, int $a_sequence_id)
Lookup assigned qpl name (including taxonomy) by sequence.
enable(string $a_module_name)
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
setFormAction(string $a_form_action, bool $a_multipart=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
setFormName(string $a_name="")
static _lookupObjId(int $ref_id)
static lookupOfflineStatus(int $obj_id)
Lookup offline status using objectDataCache.
static _lookupTitle(int $a_obj_id)
class ilCourseObjectiveMaterials
static _lookupTitle(int $obj_id)
parse(array $a_objective_ids)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(object $a_parent_obj, ilObject $a_course_obj)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
static getInstanceByObjId(int $a_obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static lookupRandomTest(int $a_test_obj_id)
static lookupSequencesByType(int $a_container_id, int $a_objective_id, int $a_test_id, int $a_test_type)
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
static getInstance(int $a_container_id)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
disable(string $a_module_name)
const TYPE_TEST_QUALIFIED
const TYPE_QUALIFYING_SELECTED
static _lookupType(int $id, bool $reference=false)
addMultiCommand(string $a_cmd, string $a_text)
class ilcourseobjectiveQuestion