19 declare(strict_types=1);
49 private readonly
ilTree $tree,
63 private readonly
ilCtrl $ctrl,
76 switch (strtolower((
string) $this->
ctrl->getNextClass($this))) {
77 case strtolower(self::class):
79 $cmd = $this->
ctrl->getCmd() .
'Cmd';
83 $this->
ctrl->setReturn($this, self::CMD_BROWSE_QUESTIONS);
90 if (!$this->
access->checkAccess(
'write',
'', $this->test_obj->getRefId())) {
97 $this->
ctrl->setParameter($this, self::MODE_PARAMETER, $this->testrequest->raw(self::MODE_PARAMETER));
98 $action = $this->
ctrl->getLinkTarget($this, self::CMD_BROWSE_QUESTIONS);
100 $mode = $this->
ctrl->getParameterArrayByClass(self::class)[self::MODE_PARAMETER];
101 $parent_title = ($mode === self::MODE_BROWSE_TESTS ?
'test_title' :
'tst_source_question_pool');
106 $this->main_tpl->setContent(
107 $this->ui_renderer->render([
109 $question_browser_table->getComponent($this->http_state->request(), $this->ui_service->filter()->getData($filter))
122 'question_browser_filter',
124 ))->getComponent($action, $this->http_state->request());
133 (
string) $this->test_obj->getId(),
148 $selected_array = $this->http_state->wrapper()->query()->retrieve(
151 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->int()),
157 if ($selected_array === []) {
158 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'tst_insert_missing_question'),
true);
159 $this->
ctrl->redirect($this, self::CMD_BROWSE_QUESTIONS);
162 if (in_array(
'ALL_OBJECTS', $selected_array,
true)) {
163 $selected_array = array_keys(
171 fn(
int $v):
int => $this->test_obj->insertQuestion($v),
177 $this->main_tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'tst_questions_inserted'),
true);
184 $this->
tabs->clearTargets();
185 $this->
tabs->clearSubTabs();
187 $this->
tabs->setBackTarget(
188 $this->
lng->txt(
'backtocallingtest'),
192 $browseQuestionsTabLabel = match ($this->testrequest->raw(self::MODE_PARAMETER)) {
193 self::MODE_BROWSE_POOLS => $this->
lng->txt(
'tst_browse_for_qpl_questions'),
194 self::MODE_BROWSE_TESTS => $this->
lng->txt(
'tst_browse_for_tst_questions'),
199 self::CMD_BROWSE_QUESTIONS,
200 $browseQuestionsTabLabel,
201 $this->
ctrl->getLinkTarget($this, self::CMD_BROWSE_QUESTIONS)
203 $this->
tabs->activateTab(
'browseQuestions');
213 $this->component_repository,
215 $this->questionrepository
216 ))->getQuestionSetConfig();
221 if ($this->testrequest->raw(self::MODE_PARAMETER) === self::MODE_BROWSE_TESTS) {
225 return $question_list;
231 return $question_list;
236 $parents = $this->tree->getSubTree(
237 $this->tree->getNodeData($repositoryRootNode),
244 foreach ($parents as $nodeData) {
245 if ((
int) $nodeData[
'obj_id'] === $this->test_obj->getId()) {
249 $parentIds[$nodeData[
'obj_id']] = $nodeData[
'obj_id'];
252 $parentIds =
array_map(
'intval', array_values($parentIds));
254 return array_intersect($parentIds, $available_pools);
setExcludeQuestionIdsFilter(array $excludeQuestionIdsFilter)
getQuestionsBrowserTable(string $parent_title='')
Readable part of repository interface to ilComponentDataDB.
setQuestionInstanceTypeFilter(?string $questionInstanceTypeFilter)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getQuestionsBrowserFilterComponent(string $parent_title='', string $action='')
addModeParametersToQuestionList(ilAssQuestionList $question_list)
const REPOSITORY_ROOT_NODE_ID
setParentObjIdsFilter(array $parentObjIdsFilter)
setParentObjectType(string $parentObjType)
const CMD_BROWSE_QUESTIONS
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getQuestionParentObjIds(int $repositoryRootNode)
const QUESTION_INSTANCE_TYPE_ALL
static _getAvailableQuestionpools(bool $use_object_id=false, bool $equal_points=false, bool $could_be_offline=false, bool $showPath=false, bool $with_questioncount=false, string $permission='read', int $usr_id=0)
Returns the available question pools for the active user.
const QUESTION_INSTANCE_TYPE_ORIGINALS
const CMD_INSERT_QUESTIONS
__construct(private readonly ilTabsGUI $tabs, private readonly ilTree $tree, private readonly ilDBInterface $db, private readonly TestLogger $logger, private readonly ilComponentRepository $component_repository, private readonly ilObjTest $test_obj, private readonly ilObjUser $current_user, private readonly ilAccessHandler $access, private readonly GlobalHttpState $http_state, private readonly Refinery $refinery, private readonly UIFactory $ui_factory, private readonly UIRenderer $ui_renderer, private readonly RequestDataCollector $testrequest, private readonly GeneralQuestionPropertiesRepository $questionrepository, private readonly ilLanguage $lng, private readonly ilCtrl $ctrl, private readonly ilGlobalTemplateInterface $main_tpl, private readonly ilUIService $ui_service, private readonly DataFactory $data_factory, private readonly TaxonomyService $taxonomy,)
buildTestQuestionSetConfig()