3 declare(strict_types=1);
95 $this->
setId(
'qpl_brows_tabl_' . $this->testOBJ->getId());
97 $this->testrequest = $DIC->test()->internal()->request();
103 $this->
setStyle(
'table',
'fullwidth');
105 $this->
addColumn($this->
lng->txt(
"tst_question_title"),
'title',
'');
106 $this->
addColumn($this->
lng->txt(
"description"),
'description',
'');
107 $this->
addColumn($this->
lng->txt(
"tst_question_type"),
'ttype',
'');
108 $this->
addColumn($this->
lng->txt(
"author"),
'author',
'');
109 $this->
addColumn($this->
lng->txt(
'qst_lifecycle'),
'lifecycle',
'');
110 $this->
addColumn($this->
lng->txt(
"create_date"),
'created',
'');
112 $this->
lng->txt(
"last_update"),
118 $this->
setRowTemplate(
"tpl.il_as_tst_question_browser_row.html",
"Modules/Test");
125 $this->
enable(
'select_all');
132 $this->writeAccess = $value;
152 switch (strtolower((
string) $this->
ctrl->getNextClass($this))) {
153 case strtolower(__CLASS__):
156 $cmd = $this->
ctrl->getCmd() .
'Cmd';
157 return $this->$cmd();
161 $this->
ctrl->setReturn($this, self::CMD_BROWSE_QUESTIONS);
162 return parent::executeCommand();
170 $this->mainTpl->setContent($this->
ctrl->getHTML($this));
177 $this->
ctrl->redirect($this, self::CMD_BROWSE_QUESTIONS);
183 $this->
ctrl->redirect($this, self::CMD_BROWSE_QUESTIONS);
188 $selected_array = [];
189 if ($this->httpState->wrapper()->post()->has(
'q_id')) {
190 $selected_array = $this->httpState->wrapper()->post()->retrieve(
196 if ($selected_array === []) {
197 $this->mainTpl->setOnScreenMessage(
'info', $this->
lng->txt(
"tst_insert_missing_question"),
true);
198 $this->
ctrl->redirect($this, self::CMD_BROWSE_QUESTIONS);
205 foreach ($selected_array as
$key => $value) {
206 $last_question_id = $this->testOBJ->insertQuestion($testQuestionSetConfig, $value);
213 $this->testOBJ->saveCompleteStatus($testQuestionSetConfig);
216 $this->mainTpl->setOnScreenMessage(
'info', $this->
lng->txt(
"manscoring_hint"),
true);
218 $this->mainTpl->setOnScreenMessage(
'success', $this->
lng->txt(
"tst_questions_inserted"),
true);
226 if ($this->testrequest->isset(self::CONTEXT_PARAMETER)) {
227 $this->
ctrl->setParameterByClass(
229 self::CONTEXT_PARAMETER,
230 $this->testrequest->raw(self::CONTEXT_PARAMETER)
232 $this->
addHiddenInput(self::CONTEXT_PARAMETER, $this->testrequest->raw(self::CONTEXT_PARAMETER));
235 if ($this->testrequest->isset(self::MODE_PARAMETER)) {
236 $this->
ctrl->setParameterByClass(
238 self::MODE_PARAMETER,
239 $this->testrequest->raw(self::MODE_PARAMETER)
241 $this->
addHiddenInput(self::MODE_PARAMETER, $this->testrequest->raw(self::MODE_PARAMETER));
250 if ($this->testrequest->isset(self::CONTEXT_PARAMETER)) {
251 return $this->testrequest->raw(self::CONTEXT_PARAMETER);
262 if ($this->testrequest->isset(self::MODE_PARAMETER)) {
263 return $this->testrequest->raw(self::MODE_PARAMETER);
271 $this->
tabs->clearTargets();
272 $this->
tabs->clearSubTabs();
274 $this->
tabs->setBackTarget(
284 $this->
tabs->activateTab(
'browseQuestions');
289 return $this->
lng->txt(
'backtocallingtest');
294 return $this->
ctrl->getLinkTargetByClass(
303 case self::CONTEXT_PAGE_VIEW:
305 return 'ilTestExpressPageObjectGUI';
306 case self::CONTEXT_LIST_VIEW:
308 return 'ilObjTestGUI';
315 case self::CONTEXT_LIST_VIEW:
319 case self::CONTEXT_PAGE_VIEW:
330 case self::MODE_BROWSE_POOLS:
332 return $this->
lng->txt(
'tst_browse_for_qpl_questions');
334 case self::MODE_BROWSE_TESTS:
336 return $this->
lng->txt(
'tst_browse_for_tst_questions');
344 return $this->
ctrl->getLinkTarget($this, self::CMD_BROWSE_QUESTIONS);
349 $ti =
new ilTextInputGUI($this->
lng->txt(
"tst_qbt_filter_question_title"),
"title");
350 $ti->setMaxLength(64);
352 $ti->setValidationRegexp(
'/(^[^%]+$)|(^$)/is');
354 $ti->readFromSession();
355 $this->
filter[
"title"] = $ti->getValue();
358 $ti->setMaxLength(64);
360 $ti->setValidationRegexp(
'/(^[^%]+$)|(^$)/is');
362 $ti->readFromSession();
363 $this->
filter[
"description"] = $ti->getValue();
366 $ti->setMaxLength(64);
369 $ti->setValidationRegexp(
'/(^[^%]+$)|(^$)/is');
370 $ti->readFromSession();
371 $this->
filter[
"author"] = $ti->getValue();
373 $lifecycleOptions = array_merge(
374 [
'' => $this->
lng->txt(
'qst_lifecycle_filter_all')],
378 $lifecycleInp->setOptions($lifecycleOptions);
380 $lifecycleInp->readFromSession();
381 $this->
filter[
'lifecycle'] = $lifecycleInp->getValue();
385 $options[
""] = $this->
lng->txt(
'filter_all_question_types');
386 foreach ($types as $translation => $row) {
387 $options[$row[
'type_tag']] = $translation;
391 $si->setOptions($options);
393 $si->readFromSession();
394 $this->
filter[
"type"] = $si->getValue();
397 $ti->setMaxLength(64);
399 $ti->setValidationRegexp(
'/(^[^%]+$)|(^$)/is');
401 $ti->readFromSession();
402 $this->
filter[
'parent_title'] = $ti->getValue();
407 $ri->setClickableTypes([
'tst']);
409 $ri->setClickableTypes([
'qpl']);
412 $ri->readFromSession();
413 $this->
filter[
'repository_root_node'] = $ri->getValue();
419 case self::MODE_BROWSE_POOLS:
421 return $this->
lng->txt(
'qpl');
423 case self::MODE_BROWSE_TESTS:
425 return $this->
lng->txt(
'tst');
442 $this->tpl->setVariable(
"QUESTION_ID", $a_set[
"question_id"]);
443 $this->tpl->setVariable(
"QUESTION_TITLE", $a_set[
"title"]);
444 $this->tpl->setVariable(
"QUESTION_COMMENT", $a_set[
"description"]);
446 $this->tpl->setVariable(
"QUESTION_AUTHOR", $a_set[
"author"]);
448 $this->tpl->setVariable(
452 $this->tpl->setVariable(
456 $this->tpl->setVariable(
457 "QUESTION_POOL_OR_TEST_TITLE",
459 (
int) $a_set[
"obj_fi"],
460 $a_set[
"parent_title"]
468 case self::MODE_BROWSE_POOLS:
469 return $this->buildPossiblyLinkedQuestonPoolTitle(
479 case self::MODE_BROWSE_TESTS:
480 return $this->buildPossiblyLinkedTestTitle(
499 $this->component_repository,
503 return $testQuestionSetConfigFactory->getQuestionSetConfig();
511 $questionList->setExcludeQuestionIdsFilter($this->testOBJ->getExistingQuestions());
513 $repositoryRootNode = self::REPOSITORY_ROOT_NODE_ID;
516 if (!in_array($item->getValue(), [
false, null,
''],
true)) {
517 switch ($item->getPostVar()) {
524 $questionList->addFieldFilter($item->getPostVar(), $item->getValue());
527 case 'repository_root_node':
528 $repositoryRootNode = (
int) $item->getValue();
532 if ($repositoryRootNode < 1) {
533 $repositoryRootNode = self::REPOSITORY_ROOT_NODE_ID;
538 if (!count($parentObjectIds)) {
542 $questionList->setParentObjIdsFilter($parentObjectIds);
545 $questionList->load();
547 return $questionList->getQuestionDataArray();
565 $parents = $this->tree->getSubTree(
566 $this->tree->getNodeData($repositoryRootNode),
573 foreach ($parents as $nodeData) {
574 if ((
int) $nodeData[
'obj_id'] === $this->testOBJ->getId()) {
578 $parentIds[$nodeData[
'obj_id']] = $nodeData[
'obj_id'];
581 $parentIds = array_map(
'intval', array_values($parentIds));
585 return array_intersect($parentIds, $available_pools);
587 return array_filter($parentIds,
function ($obj_id):
bool {
589 $refId = current($refIds);
getBrowseQuestionsTabUrl()
static _getAvailableQuestionpools($use_object_id=false, $equal_points=false, $could_be_offline=false, $showPath=false, $with_questioncount=false, $permission="read", $usr_id="")
Returns the available question pools for the active user.
static getInstance($identifier)
Readable part of repository interface to ilComponentDataDB.
enable(string $a_module_name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
ILIAS HTTP GlobalHttpState $httpState
getBrowseQuestionsTabLabel()
setResetCommand(string $a_val, string $a_caption="")
Class ChatMainBarProvider .
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static _getAllReferences(int $id)
get all reference ids for object ID
const REPOSITORY_ROOT_NODE_ID
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static _getQuestionTypeName($type_tag)
setDisableFilterHiding(bool $a_val=true)
getQuestionInstanceTypeFilter()
getQuestionParentObjectType()
const CMD_BROWSE_QUESTIONS
setFormName(string $a_name="")
setWriteAccess(bool $value)
buildPossiblyLinkedQuestonPoolOrTestTitle(int $obj_id, string $parent_title)
ILIAS Test InternalRequestService $testrequest
setStyle(string $a_element, string $a_style)
static _needsManualScoring(int $question_id)
ilComponentRepository $component_repository
addHiddenInput(string $a_name, string $a_value)
setDefaultOrderField(string $a_defaultorderfield)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setFilterCommand(string $a_val, string $a_caption="")
setDefaultOrderDirection(string $a_defaultorderdirection)
getQuestionParentObjIds(int $repositoryRootNode)
__construct(Container $dic, ilPlugin $plugin)
__construct(ilCtrl $ctrl, ilGlobalTemplateInterface $mainTpl, ilTabsGUI $tabs, ilLanguage $lng, ilTree $tree, ilDBInterface $db, ilComponentRepository $component_repository, ilObjTest $testOBJ, ilAccessHandler $access, ILIAS\HTTP\GlobalHttpState $httpState, Refinery $refinery, UIFactory $ui_factory, UIRenderer $ui_renderer)
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)
getFilterItems(bool $a_optionals=false)
const QUESTION_INSTANCE_TYPE_ALL
addMultiCommand(string $a_cmd, string $a_text)
ilGlobalTemplateInterface $mainTpl
static getDraftInstance()
const QUESTION_INSTANCE_TYPE_ORIGINALS
const CMD_INSERT_QUESTIONS
getTranslatedLifecycle(?string $lifecycle)
ILIAS Refinery Factory $refinery
buildTestQuestionSetConfig()
static _getQuestionTypes($all_tags=false, $fixOrder=false, $withDeprecatedTypes=true)