19 declare(strict_types=1);
41 private readonly \ilHelpGUI
$help;
42 private readonly \ilCtrlInterface
$ctrl;
43 private readonly \ilAccessHandler
$access;
44 private readonly \ilLanguage
$lng;
67 $this->main_tpl = $DIC[
'tpl'];
68 $this->
tabs = $DIC[
'ilTabs'];
69 $this->
help = $DIC[
'ilHelp'];
70 $this->
ctrl = $DIC[
'ilCtrl'];
71 $this->
access = $DIC[
'ilAccess'];
72 $this->
lng = $DIC[
'lng'];
73 $this->rbac_system = $DIC[
'rbacsystem'];
74 $this->content_style = $DIC->contentStyle();
76 $local_dic = QuestionPoolDIC::dic();
77 $this->request = $local_dic[
'request_data_collector'];
78 $this->questionrepository = $local_dic[
'question.general_properties.repository'];
80 if ($this->request->raw(
'qpool_ref_id')) {
81 $this->
setPoolRefId($this->request->raw(
'qpool_ref_id'));
82 } elseif ($this->request->raw(
'qpool_obj_id')) {
83 $this->
setPoolObjId($this->request->raw(
'qpool_obj_id'));
87 $this->
lng->loadLanguageModule(
'assessment');
89 $this->
ctrl->saveParameter($this, [
'qpool_ref_id',
'qpool_obj_id',
'q_id',
'q_type']);
92 $this->new_id_listeners = [];
93 $this->new_id_listener_cnt = 0;
98 $this->selfassessmenteditingmode = $a_selfassessmenteditingmode;
108 $this->defaultnroftries = $a_defaultnroftries;
118 $this->page_config = $a_val;
128 $cmd = $this->
ctrl->getCmd();
129 $next_class = $this->
ctrl->getNextClass();
131 switch ($next_class) {
137 $question = $question_gui->getObject();
138 $question->setSelfAssessmentEditingMode(
142 $question->setDefaultNrOfTries(
147 if (is_object($this->page_config)) {
148 $question->setPreventRteUsage($this->
getPageConfig()->getPreventRteUsage());
149 $question_gui->setInLearningModuleContext(get_class($this->page_config) === ilLMPageConfig::class);
152 $question_gui->setObject($question);
154 $count = $this->questionrepository->usageCount($question_gui->getObject()->getId());
156 if ($this->rbac_system->checkAccess(
'write', $this->getPoolRefId())) {
157 $this->main_tpl->setOnScreenMessage(
'info', sprintf($this->
lng->txt(
'qpl_question_is_in_use'), $count));
161 $this->
tabs->activateTab(
'question');
162 if ($cmd !==
'save') {
163 return (
string) $this->
ctrl->forwardCommand($question_gui);
165 if ($question_gui->saveQuestion()) {
166 $this->main_tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_obj_modified'),
true);
169 return (
string) $question_gui->editQuestion();
175 $this->
ctrl->forwardCommand(
192 $this->questionid = $a_questionid;
193 $this->
ctrl->setParameter($this,
'q_id', $this->questionid);
203 $this->poolrefid = $a_poolrefid;
204 $this->
ctrl->setParameter($this,
'qpool_ref_id', $this->poolrefid);
220 $this->poolobjid = $a_poolobjid;
221 $this->
ctrl->setParameter($this,
'qpool_obj_id', $this->poolobjid);
231 $this->questiontype = $a_questiontype;
232 $this->
ctrl->setParameter($this,
'q_type', $this->questiontype);
ilGlobalTemplateInterface $main_tpl
setDefaultNrOfTries(?int $a_defaultnroftries)
setQuestionId(?int $a_questionid)
readonly RequestDataCollector $request
ilPageConfig $page_config
static _getQuestionGUI(string $question_type='', int $question_id=-1)
Creates a question gui representation and returns the alias to the question gui.
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setPoolRefId(?int $a_poolrefid)
getSelfAssessmentEditingMode()
setSelfAssessmentEditingMode(bool $a_selfassessmenteditingmode)
readonly ContentStyle $content_style
setPoolObjId(?int $a_poolobjid)
setPageConfig(ilPageConfig $a_val)
readonly ilAccessHandler $access
__construct(Container $dic, ilPlugin $plugin)
bool $selfassessmenteditingmode
readonly ilRbacSystem $rbac_system
readonly GeneralQuestionPropertiesRepository $questionrepository
setQuestionType(?string $a_questiontype)
forwardToFeedbackEditGUI(assQuestionGUI $question_gui)
readonly ilCtrlInterface $ctrl