30 private \ILIAS\TestQuestionPool\InternalRequestService
$request;
31 protected \ILIAS\Notes\Service
$notes;
52 $this->
setId(
"qpl_confirm_del_" . $a_parent_obj->object->getRefId());
54 $this->
setId(
"qpl_qst_brows_" . $a_parent_obj->object->getRefId());
61 $ilCtrl = $DIC[
'ilCtrl'];
62 $this->request = $DIC->testQuestionPool()->internal()->request();
64 $this->
ctrl = $ilCtrl;
66 $this->renderer = $DIC->ui()->renderer();
67 $this->ui_factory = $DIC->ui()->factory();
76 $this->
setStyle(
'table',
'fullwidth');
81 if (strcmp(
$c,
'description') == 0) {
82 $this->
addColumn($this->
lng->txt(
"description"),
'description',
'');
84 if (strcmp(
$c,
'type') == 0) {
85 $this->
addColumn($this->
lng->txt(
"question_type"),
'ttype',
'');
88 if (strcmp(
$c,
'points') == 0) {
89 $this->
addColumn($this->
lng->txt(
"points"),
'points',
'',
false,
'ilCenterForced');
91 if (strcmp(
$c,
'statistics') == 0) {
94 if (strcmp(
$c,
'author') == 0) {
95 $this->
addColumn($this->
lng->txt(
"author"),
'author',
'');
97 if (
$c ==
'lifecycle') {
98 $this->
addColumn($this->
lng->txt(
'qst_lifecycle'),
'lifecycle',
'');
101 $this->
addColumn($this->
lng->txt(
"ass_comments"),
'comments',
'');
103 if (strcmp(
$c,
'created') == 0) {
104 $this->
addColumn($this->
lng->txt(
"create_date"),
'created',
'');
106 if (strcmp(
$c,
'tstamp') == 0) {
107 $this->
addColumn($this->
lng->txt(
"last_update"),
'tstamp',
'');
113 $this->
addColumn($this->
lng->txt(
"title"),
'title',
'');
115 if (strcmp(
$c,
'description') == 0) {
116 $this->
addColumn($this->
lng->txt(
"description"),
'description',
'');
118 if (strcmp(
$c,
'type') == 0) {
119 $this->
addColumn($this->
lng->txt(
"question_type"),
'ttype',
'');
136 $this->
setRowTemplate(
"tpl.il_as_qpl_questionbrowser_row.html",
"Modules/TestQuestionPool");
150 $this->
enable(
'select_all');
155 $this->notes = $DIC->notes();
157 $this->notes->gui()->initJavascript();
185 foreach ($questionData as
$key =>
$data) {
186 $notes_context = $this->notes
189 $this->parent_obj->object->getId(),
190 $data[
'question_id'],
193 $numComments = $this->notes
195 ->getNrOfCommentsForContext($notes_context);
197 if ($this->
filter[
'commented'] && !$numComments) {
198 unset($questionData[
$key]);
202 $questionData[
$key][
'comments'] = $numComments;
213 $cols[
"description"] = array(
214 "txt" =>
$lng->
txt(
"description"),
217 $cols[
"type"] = array(
218 "txt" =>
$lng->
txt(
"question_type"),
221 if (!$this->confirmdelete) {
222 $cols[
"points"] = array(
226 $cols[
"statistics"] = array(
227 "txt" =>
$lng->
txt(
"statistics"),
230 $cols[
"author"] = array(
234 $cols[
'lifecycle'] = array(
235 'txt' =>
$lng->
txt(
'qst_lifecycle'),
239 $cols[
"comments"] = array(
240 "txt" =>
$lng->
txt(
"comments"),
244 $cols[
"created"] = array(
245 "txt" =>
$lng->
txt(
"create_date"),
248 $cols[
"tstamp"] = array(
249 "txt" =>
$lng->
txt(
"last_update"),
265 $ti->setMaxLength(64);
266 $ti->setValidationRegexp(
'/^[^%]+$/is');
269 $ti->readFromSession();
270 $this->
filter[
"title"] = $ti->getValue();
274 $ti->setMaxLength(64);
276 $ti->setValidationRegexp(
'/^[^%]+$/is');
278 $ti->readFromSession();
279 $this->
filter[
"description"] = $ti->getValue();
281 if (!$this->confirmdelete) {
284 $ti->setMaxLength(64);
286 $ti->setValidationRegexp(
'/^[^%]+$/is');
288 $ti->readFromSession();
289 $this->
filter[
"author"] = $ti->getValue();
293 $lifecycleOptions = array_merge(
294 array(
'' => $this->
lng->txt(
'qst_lifecycle_filter_all')),
298 $lifecycleInp->setOptions($lifecycleOptions);
300 $lifecycleInp->readFromSession();
301 $this->
filter[
'lifecycle'] = $lifecycleInp->getValue();
305 $options[
""] =
$lng->
txt(
'filter_all_question_types');
306 foreach ($types as $translation => $row) {
307 $options[$row[
'type_tag']] = $translation;
311 $si->setOptions($options);
313 $si->readFromSession();
314 $this->
filter[
"type"] = $si->getValue();
316 if ($this->parent_obj->object->getShowTaxonomies()) {
317 foreach ($this->taxIds as $taxId) {
318 if ($taxId == $this->parent_obj->object->getNavTaxonomyId()) {
322 $postvar =
"tax_$taxId";
326 $inp->readFromSession();
327 $this->
filter[$postvar] = $inp->getValue();
343 if (strcmp(
$column[
'text'], $this->
lng->txt(
"points")) == 0) {
344 $this->column[
$key][
'text'] = $this->
lng->txt(
"points") .
" (" . $this->totalPoints .
")";
347 parent::fillHeader();
359 $this->
ctrl->setParameterByClass(
"ilAssQuestionPageGUI",
"q_id", $a_set[
"question_id"]);
360 $this->
ctrl->setParameterByClass(
"ilAssQuestionPreviewGUI",
"q_id", $a_set[
"question_id"]);
361 $this->
ctrl->setParameterByClass($class,
"q_id", $a_set[
"question_id"]);
365 $actions->setId(
'qst' . $a_set[
"question_id"]);
366 $actions->setListTitle($this->
lng->txt(
'actions'));
368 if (!$this->confirmdelete) {
369 $this->tpl->setCurrentBlock(
'checkbox');
370 $this->tpl->setVariable(
'CB_QUESTION_ID', $a_set[
"question_id"]);
371 $this->tpl->parseCurrentBlock();
373 if ($a_set[
"complete"] == 0) {
374 $icon = $this->ui_factory->symbol()->icon()->custom(
ilUtil::getImagePath(
"icon_alert.svg"), $this->
lng->txt(
"warning_question_not_complete"));
375 $this->tpl->setCurrentBlock(
"qpl_warning");
376 $this->tpl->setVariable(
"ICON_WARNING", $this->renderer->render(
$icon));
377 $this->tpl->parseCurrentBlock();
379 $points = $a_set[
"points"];
381 $this->totalPoints += $points;
384 if (strcmp($c,
'points') == 0) {
385 $this->tpl->setCurrentBlock(
'points');
386 $this->tpl->setVariable(
"QUESTION_POINTS", $points);
387 $this->tpl->parseCurrentBlock();
389 if (strcmp($c,
'statistics') == 0) {
390 $this->tpl->setCurrentBlock(
'statistics');
392 $this->tpl->setVariable(
"TXT_ASSESSMENT", $this->
lng->txt(
"statistics"));
393 $this->tpl->setVariable(
"IMG_ASSESSMENT",
ilUtil::getImagePath(
"assessment.gif",
"Modules/TestQuestionPool"));
394 $this->tpl->parseCurrentBlock();
396 if (strcmp($c,
'author') == 0) {
397 $this->tpl->setCurrentBlock(
'author');
398 $this->tpl->setVariable(
"QUESTION_AUTHOR", $a_set[
"author"]);
399 $this->tpl->parseCurrentBlock();
401 if ($c ==
'lifecycle') {
404 $this->tpl->setCurrentBlock(
'lifecycle');
405 $this->tpl->setVariable(
"QUESTION_LIFECYCLE", $lifecycle->getTranslation($this->lng));
406 $this->tpl->parseCurrentBlock();
409 $this->tpl->setCurrentBlock(
'comments');
411 $this->tpl->parseCurrentBlock();
413 if (strcmp($c,
'created') == 0) {
414 $this->tpl->setCurrentBlock(
'created');
416 $this->tpl->parseCurrentBlock();
418 if (strcmp($c,
'tstamp') == 0) {
419 $this->tpl->setCurrentBlock(
'updated');
421 $this->tpl->parseCurrentBlock();
426 $this->
lng->txt(
'preview'),
431 $this->
lng->txt(
'statistics'),
436 $editHref = $this->
ctrl->getLinkTargetByClass($a_set[
'type_tag'] .
'GUI',
'editQuestion');
437 $actions->addItem($this->
lng->txt(
'edit_question'),
'', $editHref);
439 $editPageHref = $this->
ctrl->getLinkTargetByClass(
'ilAssQuestionPageGUI',
'edit');
440 $actions->addItem($this->
lng->txt(
'edit_page'),
'', $editPageHref);
444 $this->
ctrl->setParameter($this->parent_obj,
'q_id', $a_set[
'question_id']);
445 $moveHref = $this->
ctrl->getLinkTarget($this->parent_obj,
'move');
446 $this->
ctrl->setParameter($this->parent_obj,
'q_id', null);
447 $actions->addItem($this->
lng->txt(
'move'),
'', $moveHref);
449 $this->
ctrl->setParameter($this->parent_obj,
'q_id', $a_set[
'question_id']);
450 $copyHref = $this->
ctrl->getLinkTarget($this->parent_obj,
'copy');
451 $this->
ctrl->setParameter($this->parent_obj,
'q_id', null);
452 $actions->addItem($this->
lng->txt(
'copy'),
'', $copyHref);
454 $this->
ctrl->setParameter($this->parent_obj,
'q_id', $a_set[
'question_id']);
455 $deleteHref = $this->
ctrl->getLinkTarget($this->parent_obj,
'deleteQuestions');
456 $this->
ctrl->setParameter($this->parent_obj,
'q_id', null);
457 $actions->addItem($this->
lng->txt(
'delete'),
'', $deleteHref);
461 $this->
ctrl->setParameterByClass(
'ilAssQuestionFeedbackEditingGUI',
'q_id', $a_set[
'question_id']);
463 $this->
ctrl->setParameterByClass(
'ilAssQuestionFeedbackEditingGUI',
'q_id', null);
464 $actions->addItem($this->
lng->txt(
'tst_feedback'),
'', $feedbackHref);
466 $this->
ctrl->setParameterByClass(
'ilAssQuestionHintsGUI',
'q_id', $a_set[
'question_id']);
468 $this->
ctrl->setParameterByClass(
'ilAssQuestionHintsGUI',
'q_id', null);
469 $actions->addItem($this->
lng->txt(
'tst_question_hints_tab'),
'', $hintsHref);
474 $this->
lng->txt(
'ass_comments'),
486 $this->tpl->setCurrentBlock(
'hidden');
487 $this->tpl->setVariable(
'HIDDEN_QUESTION_ID', $a_set[
"question_id"]);
488 $this->tpl->parseCurrentBlock();
492 if (strcmp($c,
'description') == 0) {
493 $this->tpl->setCurrentBlock(
'description');
494 $this->tpl->setVariable(
"QUESTION_COMMENT", $a_set[
'description']);
495 $this->tpl->parseCurrentBlock();
497 if (strcmp($c,
'type') == 0) {
498 $this->tpl->setCurrentBlock(
'type');
500 $this->tpl->parseCurrentBlock();
503 $this->tpl->setVariable(
'QUESTION_ID', $a_set[
"question_id"]);
504 if (!$this->confirmdelete) {
506 $this->tpl->setVariable(
'QUESTION_TITLE_LINKED', $a_set[
'title']);
507 $this->tpl->setVariable(
'ACTIONS', $actions->getHTML());
509 $this->tpl->setVariable(
'QUESTION_ID_UNLINKED', $a_set[
'question_id']);
510 $this->tpl->setVariable(
'QUESTION_TITLE_UNLINKED', $a_set[
'title']);
516 $this->editable = $value;
526 $this->writeAccess = $value;
540 if (in_array($a_field, array(
'points',
'created',
'tstamp',
'comments'))) {
549 if (!$qData[
'comments']) {
555 $comment_glyph = $this->ui_factory->symbol()->glyph()->comment()->withCounter(
556 $this->ui_factory->counter()->status($qData[
'comments'])
558 return "document.getElementById('$id').onclick = function (event) { $ajax_link; };";
560 return $this->renderer->render($comment_glyph);
566 $update_code =
"il.UI.counter.getCounterObject($(\".ilTableOuter\")).incrementStatusCount(1);";
static getInstance($identifier)
enable(string $a_module_name)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
static _getGUIClassNameForId($a_q_id)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setResetCommand(string $a_val, string $a_caption="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static _getQuestionTypeName($type_tag)
withAdditionalOnLoadCode(Closure $binder)
ILIAS TestQuestionPool InternalRequestService $request
setFormName(string $a_name="")
__construct($a_parent_obj, $a_parent_cmd, $a_write_access=false, $confirmdelete=false, $taxIds=array(), $enableCommenting=false)
const CMD_SHOW_LIST
command constants
const CMD_SHOW
command constants
setStyle(string $a_element, string $a_style)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
$questionCommentingEnabled
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setFilterCommand(string $a_val, string $a_caption="")
isQuestionCommentingEnabled()
setDefaultOrderDirection(string $a_defaultorderdirection)
getCommentsAjaxLink($questionId)
ILIAS Notes Service $notes
fillRow(array $a_set)
fill row public
ILIAS UI Factory $ui_factory
isCommentsColumnSelected()
setQuestionCommentingEnabled(bool $questionCommentingEnabled)
setQuestionData($questionData)
static buildAjaxHash(int $node_type, ?int $node_id, string $obj_type, int $obj_id, string $sub_type=null, int $sub_id=null, int $news_id=0)
Build ajax hash.
__construct(Container $dic, ilPlugin $plugin)
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)
ILIAS UI Renderer $renderer
static getListCommentsJSCall(string $a_hash, string $a_update_code=null)
Get list comments js call.
addMultiCommand(string $a_cmd, string $a_text)
numericOrdering(string $a_field)
static getDraftInstance()
static _getQuestionTypes($all_tags=false, $fixOrder=false, $withDeprecatedTypes=true)