19 declare(strict_types=0);
41 int $a_assignment_type = self::TYPE_SINGLE_ASSIGNMENTS
45 $this->test_type = $a_test_type;
46 $this->assignment_type = $a_assignment_type;
47 $this->container_id = $a_container_id;
48 $this->db = $DIC->database();
50 $this->
setId(
'obj_loc_' . $a_container_id);
60 switch ($this->test_type) {
63 if ($this->
getSettings()->isInitialTestQualifying()) {
64 $this->
setTitle($this->
lng->txt(
'crs_loc_settings_tbl_its_q_all'));
66 $this->
setTitle($this->
lng->txt(
'crs_loc_settings_tbl_its_nq_all'));
68 } elseif ($this->
getSettings()->isInitialTestQualifying()) {
69 $this->
setTitle($this->
lng->txt(
'crs_loc_settings_tbl_it_q'));
71 $this->
setTitle($this->
lng->txt(
'crs_loc_settings_tbl_it_nq'));
77 $this->
setTitle($this->
lng->txt(
'crs_loc_settings_tbl_qts_all'));
79 $this->
setTitle($this->
lng->txt(
'crs_loc_settings_tbl_qt'));
98 public function init(): void
104 $this->
addColumn($this->
lng->txt(
'crs_objectives'),
'objective');
107 $this->
addColumn($this->
lng->txt(
'crs_loc_tbl_tst_type'),
'ttype');
108 $this->
addColumn($this->
lng->txt(
'crs_loc_tbl_tst_qst_qpl'),
'qstqpl');
110 $this->
setRowTemplate(
"tpl.crs_loc_tst_row.html",
"components/ILIAS/Course");
114 $this->
addMultiCommand(
'confirmDeleteTests', $this->
lng->txt(
'crs_loc_delete_assignment'));
118 $this->
addMultiCommand(
'confirmDeleteTest', $this->
lng->txt(
'crs_loc_delete_assignment'));
124 protected function fillRow(array $a_set): void
127 $this->tpl->setVariable(
'VAL_ID', $a_set[
'assignment_id']);
129 $this->tpl->setVariable(
'VAL_ID', $a_set[
'ref_id']);
131 $this->tpl->setVariable(
'VAL_TITLE', $a_set[
'title']);
133 $this->
ctrl->setParameterByClass(
'ilobjtestgui',
'ref_id', $a_set[
'ref_id']);
134 $this->
ctrl->setParameterByClass(
'ilobjtestgui',
'cmd',
'questionsTabGateway');
135 $this->tpl->setVariable(
137 $this->
ctrl->getLinkTargetByClass(
'ilobjtestgui')
141 $this->tpl->setCurrentBlock(
'objectives');
142 $this->tpl->setVariable(
'VAL_OBJECTIVE', (
string) $a_set[
'objective']);
143 $this->tpl->parseCurrentBlock();
146 if (strlen($a_set[
'description'])) {
147 $this->tpl->setVariable(
'VAL_DESC', $a_set[
'description']);
151 switch ($a_set[
'ttype']) {
153 $type = $this->
lng->txt(
'tst_question_set_type_fixed');
157 $type = $this->
lng->txt(
'tst_question_set_type_random');
161 $this->tpl->setVariable(
'VAL_TTYPE', $type);
162 $this->tpl->setVariable(
'VAL_QST_QPL', $a_set[
'qst_info']);
164 if (isset($a_set[
'qpls']) && is_array($a_set[
'qpls']) && $a_set[
'qpls'] !== []) {
165 foreach ($a_set[
'qpls'] as
$title) {
166 $this->tpl->setCurrentBlock(
'qpl');
167 $this->tpl->setVariable(
'MAT_TITLE', $title);
168 $this->tpl->parseCurrentBlock();
170 $this->tpl->touchBlock(
'ul_begin');
171 $this->tpl->touchBlock(
'ul_end');
178 $available = $assignments->getAssignmentsByType($this->test_type);
180 foreach ($available as $assignment) {
182 $tmp = $this->doParse($assignment->getTestRefId(), $assignment->getObjectiveId());
184 $assignment->delete();
189 $tmp[
'assignment_id'] = $assignment->getAssignmentId();
197 public function parse(
int $a_tst_ref_id): void
199 $this->
setData(array($this->doParse($a_tst_ref_id)));
206 protected function doParse(
int $a_tst_ref_id,
int $a_objective_id = 0): array
213 $tst_data[
'ref_id'] = $tst->getRefId();
214 $tst_data[
'title'] = $tst->getTitle();
215 $tst_data[
'description'] = $tst->getLongDescription();
216 $tst_data[
'ttype'] = $tst->getQuestionSetType();
222 switch ($tst->getQuestionSetType()) {
224 $tst_data[
'qst_info'] = $this->
lng->txt(
'crs_loc_tst_num_qst');
225 $tst_data[
'qst_info'] .= (
' ' . count($tst->getAllQuestions()));
240 $list->loadDefinitions();
244 $translator->loadLabels($list);
246 $tst_data[
'qst_info'] = $this->
lng->txt(
'crs_loc_tst_qpls');
248 foreach ($list as $definition) {
250 $title = $definition->getPoolTitle();
251 $filterTitle = array();
252 $filterTitle[] = $translator->getTaxonomyFilterLabel($definition->getMappedTaxonomyFilter());
253 $filterTitle[] = $translator->getTypeFilterLabel($definition->getTypeFilter());
254 if (!empty($filterTitle)) {
255 $title .=
' -> ' . implode(
' / ', $filterTitle);
257 $tst_data[
'qpls'][] =
$title;
261 $tst_data[
'qst_info'] .= (
' ' . 0);
setTopCommands(bool $a_val)
setFormAction(string $a_form_action, bool $a_multipart=false)
const QUESTION_SET_TYPE_RANDOM
const TYPE_MULTIPLE_ASSIGNMENTS
__construct(object $a_parent_obj, string $a_parent_cmd, int $a_container_id, int $a_test_type, int $a_assignment_type=self::TYPE_SINGLE_ASSIGNMENTS)
parseMultipleAssignments()
setDefaultOrderField(string $a_defaultorderfield)
Class ilLOTestAssignmentTableGUI.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setDefaultOrderDirection(string $a_defaultorderdirection)
static lookupObjectiveTitle(int $a_objective_id, bool $a_add_description=false)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
static getInstanceByObjId(int $a_obj_id)
const TYPE_SINGLE_ASSIGNMENTS
__construct(Container $dic, ilPlugin $plugin)
const QUESTION_SET_TYPE_FIXED
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)
const TYPE_TEST_QUALIFIED
addMultiCommand(string $a_cmd, string $a_text)