68 public function __construct($a_parent_obj, $a_parent_cmd, $parentRefId)
72 $this->renderer = $DIC->ui()->renderer();
73 $this->factory = $DIC->ui()->factory();
74 $this->
access = $DIC[
'ilAccess'];
76 $this->
setId(
'tst_qst_lst_' . $parentRefId);
78 $this->parent_ref_id = (
int) $parentRefId;
83 $this->
setStyle(
'table',
'fullwidth');
87 $this->
setRowTemplate(
"tpl.il_as_tst_questions_row.html",
"Modules/Test");
100 'qid' => array(
'txt' => $this->
lng->txt(
'question_id'),
'default' =>
true),
101 'description' => array(
'txt' => $this->
lng->txt(
'description'),
'default' =>
false),
102 'author' => array(
'txt' => $this->
lng->txt(
'author'),
'default' =>
false),
103 'lifecycle' => array(
'txt' => $this->
lng->txt(
'qst_lifecycle'),
'default' =>
true)
130 $this->
addColumn($this->
lng->txt(
'question_id'),
'qid',
'');
133 $this->
addColumn($this->
lng->txt(
"tst_question_title"),
'title',
'');
136 $this->
addColumn($this->
lng->txt(
"obligatory"),
'obligatory',
'');
140 $this->
addColumn($this->
lng->txt(
'description'),
'description',
'');
143 $this->
addColumn($this->
lng->txt(
"tst_question_type"),
'type',
'');
147 $this->
addColumn($this->
lng->txt(
'author'),
'author',
'');
150 $this->
addColumn($this->
lng->txt(
'qst_lifecycle'),
'lifecycle',
'');
172 $this->
addMultiCommand(
'copyAndLinkToQuestionpool', $this->
lng->txt(
'copy_and_link_to_questionpool'));
183 $this->tpl->setVariable(
"CHECKBOX_QID", $a_set[
'question_id']);
187 $this->position += 10;
190 $this->tpl->setVariable(
"QUESTION_POSITION", $inputField);
191 $this->tpl->setVariable(
"POSITION_QID", $a_set[
'question_id']);
195 $this->tpl->setVariable(
"QUESTION_ID_PRESENTATION", $a_set[
'question_id']);
200 if (!$a_set[
'complete']) {
201 $this->tpl->setVariable(
"QUESTION_INCOMPLETE_WARNING", $this->
lng->txt(
"warning_question_not_complete"));
209 $this->tpl->setVariable(
"QUESTION_COMMENT", $a_set[
"description"] ? $a_set[
"description"] :
' ');
213 $this->tpl->setVariable(
"QUESTION_POINTS", $a_set[
"points"]);
216 $this->tpl->setVariable(
"QUESTION_AUTHOR", $a_set[
"author"]);
222 $this->tpl->setVariable(
"QUESTION_LIFECYCLE", $lifecycle);
224 $this->tpl->setVariable(
"QUESTION_LIFECYCLE",
'');
228 $question_pool_title = $this->
lng->txt(
'tst_question_not_from_pool_info');
231 $question_pool_title = $this->buildPossiblyLinkedQuestonPoolTitle(
237 $a_set[
"orig_obj_fi"],
242 $this->tpl->setVariable(
248 $actions->setId(
'qst' . $a_set[
"question_id"]);
249 $actions->setListTitle($this->
lng->txt(
'actions'));
252 $this->
lng->txt(
'preview'),
258 $this->
lng->txt(
'statistics'),
264 $editHref = $this->
getQuestionEditLink($a_set, $a_set[
'type_tag'] .
'GUI',
'editQuestion');
265 $actions->addItem($this->
lng->txt(
'edit_question'),
'', $editHref);
268 $actions->addItem($this->
lng->txt(
'edit_page'),
'', $editPageHref);
271 $actions->addItem($this->
lng->txt(
'move'),
'', $moveHref);
274 $actions->addItem($this->
lng->txt(
'copy'),
'', $copyHref);
277 $actions->addItem($this->
lng->txt(
'delete'),
'', $deleteHref);
280 $actions->addItem($this->
lng->txt(
'tst_feedback'),
'', $feedbackHref);
283 $actions->addItem($this->
lng->txt(
'tst_question_hints_tab'),
'', $hintsHref);
285 $this->tpl->setVariable(
'ROW_ACTIONS', $actions->getHTML());
298 $button->setCaption(
'remove_question');
299 $button->setUrl($removeUrl);
301 return $button->render();
306 return '<a href="' . $this->
getPreviewLink($rowData) .
'">' . $rowData[
"title"] .
'</a>';
312 $this->
ctrl->setParameterByClass(
318 $this->
ctrl->setParameterByClass(
324 $this->
ctrl->setParameterByClass(
327 $rowData[
'question_id']
330 $this->
ctrl->setParameterByClass(
333 $rowData[
'question_id']
336 $this->
ctrl->setParameterByClass(
339 (
string) $this->parent_ref_id
342 $question_href = $this->
ctrl->getLinkTargetByClass(
346 $this->
ctrl->setParameterByClass($target_class,
'eqpl',
'');
347 $this->
ctrl->setParameterByClass($target_class,
'eqid',
'');
348 $this->
ctrl->setParameterByClass($target_class,
'q_id',
'');
349 $this->
ctrl->setParameterByClass($target_class,
'calling_test',
'');
351 return $question_href;
354 protected function getQuestionEditLink(array $rowData,
string $target_class,
string $cmd, array $target_class_path = []): string
356 $target_class_path = array_merge(self::CLASS_PATH_FOR_QUESTION_EDIT_LINKS, [$target_class]);
357 return $this->
getEditLink($rowData, $target_class, $cmd, $target_class_path);
360 protected function getEditLink(array $rowData,
string $target_class,
string $cmd, array $target_class_path = []): string
362 if ($target_class_path === []) {
363 $target_class_path = $target_class;
365 $this->
ctrl->setParameterByClass(
371 $this->
ctrl->setParameterByClass(
374 $rowData[
'question_id']
376 $this->
ctrl->setParameterByClass(
382 $link = $this->
ctrl->getLinkTargetByClass($target_class_path, $cmd);
384 $this->
ctrl->setParameterByClass($target_class,
'ref_id',
'');
385 $this->
ctrl->setParameterByClass($target_class,
'q_id',
'');
386 $this->
ctrl->setParameterByClass($target_class,
'calling_test',
'');
392 if (!$rowData[
'obligationPossible']) {
397 $icon = $this->factory->symbol()->icon()->custom(
399 $this->
lng->txt(
'question_obligatory')
401 return $this->renderer->render(
$icon);
404 $checkedAttr = $rowData[
'obligatory'] ?
'checked="checked"' :
'';
405 return '<input type="checkbox" name="obligatory[' . $rowData[
'question_id'] .
']" value="1" ' . $checkedAttr .
' />';
410 return '<input type="text" name="order[q_' . $questionId .
']" value="' . $position .
'" maxlength="4" size="4" />';
416 return $this->
lng->txt(
'saveOrderAndObligations');
420 return $this->
lng->txt(
'saveObligations');
424 return $this->
lng->txt(
'saveOrder');
427 return $this->
lng->txt(
'save');
436 return $this->
lng->txt(
'points');
ILIAS UI Renderer $renderer
ILIAS UI Factory $factory
static getInstance($identifier)
setQuestionManagingEnabled(bool $questionManagingEnabled)
buildQuestionTitleLink(array $rowData)
enable(string $a_module_name)
isQuestionRemoveRowButtonEnabled()
setFormAction(string $a_form_action, bool $a_multipart=false)
getQuestionEditLink(array $rowData, string $target_class, string $cmd, array $target_class_path=[])
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
buildQuestionRemoveButton(array $rowData)
setObligatoryQuestionsHandlingEnabled(bool $obligatoryQuestionsHandlingEnabled)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static _getAllReferences(int $id)
get all reference ids for object ID
$obligatoryQuestionsHandlingEnabled
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static _getQuestionTypeName($type_tag)
setQuestionRemoveRowButtonEnabled(bool $questionRemoveRowButtonEnabled)
getPreviewLink(array $rowData)
setFormName(string $a_name="")
const CMD_SHOW_LIST
command constants
const CMD_SHOW
command constants
$questionRemoveRowButtonEnabled
$positionInsertCommandsEnabled
setStyle(string $a_element, string $a_style)
isColumnSelected(string $col)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
static _lookupTitle(int $obj_id)
buildTableSaveCommandLabel()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setPositionInsertCommandsEnabled(bool $positionInsertCommandsEnabled)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
buildPositionInput($questionId, $position)
getEditLink(array $rowData, string $target_class, string $cmd, array $target_class_path=[])
$questionPositioningEnabled
const CLASS_PATH_FOR_QUESTION_EDIT_LINKS
isTableSaveCommandRequired()
buildObligatoryColumnContent(array $rowData)
setQuestionPositioningEnabled(bool $questionPositioningEnabled)
isQuestionPositioningEnabled()
isQuestionManagingEnabled()
__construct(Container $dic, ilPlugin $plugin)
isPositionInsertCommandsEnabled()
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)
__construct($a_parent_obj, $a_parent_cmd, $parentRefId)
setTotalPoints(float $totalPoints)
addMultiCommand(string $a_cmd, string $a_text)
isCheckboxColumnRequired()
isObligatoryQuestionsHandlingEnabled()
setExternalSegmentation(bool $a_val)