19 require_once
'Modules/TestQuestionPool/classes/class.ilAssQuestionHintAbstractGUI.php';
46 $this->main_tpl = $DIC->ui()->mainTemplate();
59 $ilCtrl = $DIC[
'ilCtrl'];
60 $ilTabs = $DIC[
'ilTabs'];
64 $cmd = $ilCtrl->getCmd(self::CMD_SHOW_FORM);
65 $nextClass = $ilCtrl->getNextClass($this);
68 case 'ilasshintpagegui':
69 require_once
'Modules/TestQuestionPool/classes/class.ilAssQuestionHintPageObjectCommandForwarder.php';
72 $forwarder->forward();
76 $this->
tabs->setTabActive(
'tst_question_hints_tab');
95 $ilCtrl = $DIC[
'ilCtrl'];
97 $ilToolbar = $DIC[
'ilToolbar'];
99 $ilCtrl = $DIC[
'ilCtrl'];
102 $form->setValuesByPost();
103 } elseif ($this->request->isset(
'hint_id') && (
int) $this->request->raw(
'hint_id')) {
106 if (!$questionHint->load((
int) $this->request->raw(
'hint_id'))) {
107 $this->main_tpl->setOnScreenMessage(
'failure',
'invalid hint id given: ' . (
int) $this->request->raw(
'hint_id'),
true);
116 $tpl->setContent($form->getHTML());
129 $ilCtrl = $DIC[
'ilCtrl'];
134 if ($this->request->isset(
'hint_id')) {
135 $questionHint->load((
int) $this->request->int(
'hint_id'));
137 $hintJustCreated =
false;
140 $questionHint->setQuestionId($this->questionOBJ->getId());
142 $questionHint->setIndex(
146 $hintJustCreated =
true;
150 if ($form->checkInput()) {
151 $questionHint->setText($form->getInput(
'hint_text'));
152 $questionHint->setPoints($form->getInput(
'hint_points'));
154 $questionHint->save();
155 $this->main_tpl->setOnScreenMessage(
'success',
$lng->txt(
'tst_question_hints_form_saved_msg'),
true);
157 if (!$this->questionOBJ->isAdditionalContentEditingModePageObject()) {
158 $this->questionOBJ->updateTimestamp();
161 $originalexists = $this->questionOBJ->_questionExistsInPool((
int) $this->questionOBJ->getOriginalId());
162 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
168 if ($hintJustCreated && $this->questionOBJ->isAdditionalContentEditingModePageObject()) {
169 $ilCtrl->setParameterByClass(
'ilasshintpagegui',
'hint_id', $questionHint->getId());
170 $ilCtrl->redirectByClass(
'ilasshintpagegui',
'edit');
176 $this->main_tpl->setOnScreenMessage(
'failure',
$lng->txt(
'tst_question_hints_form_invalid_msg'));
189 $ilCtrl = $DIC[
'ilCtrl'];
191 $ilCtrl->redirectByClass(
'ilAssQuestionHintsGUI');
205 $ilCtrl = $DIC[
'ilCtrl'];
208 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
209 require_once
'Services/Form/classes/class.ilTextAreaInputGUI.php';
210 require_once
'Services/Form/classes/class.ilNumberInputGUI.php';
211 require_once
'Services/Form/classes/class.ilHiddenInputGUI.php';
214 $form->setTableWidth(
'100%');
216 if (!$this->questionOBJ->isAdditionalContentEditingModePageObject()) {
221 $areaInp->setRows(10);
222 $areaInp->setCols(80);
224 if (!$this->questionOBJ->getPreventRteUsage()) {
225 $areaInp->setUseRte(
true);
228 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
231 $areaInp->setRTESupport($this->questionOBJ->getId(),
'qpl',
'assessment');
233 $areaInp->addPlugin(
"latex");
234 $areaInp->addButton(
"latex");
235 $areaInp->addButton(
"pastelatex");
237 $form->addItem($areaInp);
242 $numInp =
new ilNumberInputGUI(
$lng->txt(
'tst_question_hints_form_label_hint_points'),
'hint_points');
244 $numInp->setRequired(
true);
247 $form->addItem($numInp);
252 $form->setTitle(sprintf(
253 $lng->txt(
'tst_question_hints_form_header_edit'),
254 $questionHint->getIndex(),
255 $this->questionOBJ->getTitleForHTMLOutput()
261 $form->addItem($hiddenInp);
265 require_once
'Services/Utilities/classes/class.ilUtil.php';
267 if (!$this->questionOBJ->isAdditionalContentEditingModePageObject()) {
268 $areaInp->setValue($questionHint->getText());
271 $numInp->setValue($questionHint->getPoints());
273 $hiddenInp->setValue($questionHint->getId());
276 $form->setTitle(sprintf(
277 $lng->txt(
'tst_question_hints_form_header_create'),
278 $this->questionOBJ->getTitleForHTMLOutput()
282 if ($this->questionOBJ->isAdditionalContentEditingModePageObject()) {
283 if ($questionHint instanceof ilAssQuestionHint) {
284 $saveCmdLabel =
$lng->txt(
'tst_question_hints_form_cmd_save_points');
286 $saveCmdLabel =
$lng->txt(
'tst_question_hints_form_cmd_save_points_and_edit_page');
289 $saveCmdLabel =
$lng->txt(
'tst_question_hints_form_cmd_save');
292 $form->setFormAction($ilCtrl->getFormAction($this));
294 $form->addCommandButton(self::CMD_SAVE_FORM, $saveCmdLabel);
295 $form->addCommandButton(self::CMD_CANCEL_FORM,
$lng->txt(
'cancel'));
executeCommand()
Execute Command.
const PRESENTATION_MODE_AUTHOR
presentation mode for authoring
cancelFormCmd()
gateway command method to jump back to question hints overview
saveFormCmd()
saves the form on successfull validation and redirects to showForm command
const CMD_SHOW_LIST
command constants
__construct(assQuestionGUI $questionGUI)
static getNextIndexByQuestionId($questionId)
determines the next index to be used for a new hint that is to be added to the list of existing hints...
buildForm(ilAssQuestionHint $questionHint=null)
builds the questions hints form
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const CMD_SHOW_FORM
command constants
assQuestionGUI $questionGUI
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
static _isWriteable(int $question_id, int $user_id)
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
ilGlobalTemplateInterface $main_tpl
static _getUsedHTMLTags(string $a_module="")
Returns an array of all allowed HTML tags for text editing.
showFormCmd(ilPropertyFormGUI $form=null)
shows the form for managing a new/existing hint