99 $this->poolOBJ = $poolGUI->object;
109 if (!$this->
access->checkAccess(
'write',
'', $this->poolGUI->getRefId())) {
110 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'cannot_edit_question_pool'),
true);
111 $this->
ctrl->redirectByClass(
'ilObjQuestionPoolGUI',
'infoScreen');
116 $this->
tabs->activateTab(
'settings');
117 $this->
tabs->activateSubTab(
'qpl_settings_subtab_general');
121 $nextClass = $this->
ctrl->getNextClass();
123 switch ($nextClass) {
125 $cmd = $this->
ctrl->getCmd(self::CMD_SHOW_FORM) .
'Cmd';
132 if ($form === null) {
136 $this->tpl->setContent($this->
ctrl->getHTML($form));
145 $errors = !$form->checkInput();
146 $form->setValuesByPost();
151 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'form_input_not_valid'));
161 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
162 $this->
ctrl->redirect($this, self::CMD_SHOW_FORM);
169 include_once
'Services/MetaData/classes/class.ilMD.php';
170 $md_obj =
new ilMD($this->poolOBJ->getId(), 0,
"qpl");
178 $md_desc_ids = $md_section->getDescriptionIds();
180 $md_desc = $md_section->getDescription(array_pop($md_desc_ids));
181 $md_desc->setDescription($form->
getItemByPostVar(
'description')->getValue());
184 $md_desc = $md_section->addDescription();
185 $md_desc->setDescription($form->
getItemByPostVar(
'description')->getValue());
190 $this->poolOBJ->setDescription($form->
getItemByPostVar(
'description')->getValue());
191 $this->poolOBJ->update();
194 $this->poolOBJ->setOnline($online->getChecked());
197 $this->poolOBJ->setShowTaxonomies($showTax->getChecked());
200 $this->poolOBJ->setNavTaxonomyId($navTax->getValue());
202 $DIC->object()->commonSettings()->legacyForm($form, $this->poolOBJ)->saveTileImage();
206 $this->poolOBJ->setSkillServiceEnabled($skillService->getChecked());
209 $this->poolOBJ->saveToDb();
216 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
219 $form->setFormAction($this->
ctrl->getFormAction($this));
220 $form->addCommandButton(self::CMD_SAVE_FORM, $this->
lng->txt(
'save'));
222 $form->setTitle($this->
lng->txt(
'qpl_form_general_settings'));
223 $form->setId(
'properties');
225 include_once
'Services/MetaData/classes/class.ilMD.php';
226 $md_obj =
new ilMD($this->poolOBJ->getId(), 0,
"qpl");
230 $title->setRequired(
true);
231 $title->setMaxLength(255);
232 $title->setValue($md_section->getTitle());
233 $form->addItem($title);
235 $ids = $md_section->getDescriptionIds();
237 $desc_obj = $md_section->getDescription(array_pop($ids));
242 $desc->setValue($desc_obj->getDescription());
243 $form->addItem($desc);
248 $online =
new ilCheckboxInputGUI($this->
lng->txt(
'qpl_settings_general_form_property_online'),
'online');
249 $online->
setInfo($this->
lng->txt(
'qpl_settings_general_form_property_online_description'));
250 $online->setChecked($this->poolOBJ->getOnline());
251 $form->addItem($online);
255 $showTax =
new ilCheckboxInputGUI($this->
lng->txt(
'qpl_settings_general_form_property_show_taxonomies'),
'show_taxonomies');
256 $showTax->
setInfo($this->
lng->txt(
'qpl_settings_general_form_prop_show_tax_desc'));
257 $showTax->setChecked($this->poolOBJ->getShowTaxonomies());
258 $form->addItem($showTax);
264 $navTax =
new ilSelectInputGUI($this->
lng->txt(
'qpl_settings_general_form_property_nav_taxonomy'),
'nav_taxonomy');
265 $navTax->setInfo($this->
lng->txt(
'qpl_settings_general_form_property_nav_taxonomy_description'));
266 $navTax->setValue($this->poolOBJ->getNavTaxonomyId());
267 $navTax->setOptions($taxSelectOptions);
268 $showTax->addSubItem($navTax);
271 $section->setTitle($this->
lng->txt(
'tst_presentation_settings_section'));
272 $form->addItem($section);
274 $DIC->object()->commonSettings()->legacyForm($form, $this->poolOBJ)->addTileImage();
280 $otherHead->setTitle($this->
lng->txt(
'obj_features'));
281 $form->addItem($otherHead);
283 $skillService =
new ilCheckboxInputGUI($this->
lng->txt(
'tst_activate_skill_service'),
'skill_service');
284 $skillService->
setChecked($this->poolOBJ->isSkillServiceEnabled());
285 $form->addItem($skillService);
293 $taxSelectOptions = array(
294 '0' => $this->
lng->txt(
'qpl_settings_general_form_property_opt_notax_selected')
297 foreach ($this->poolOBJ->getTaxonomyIds() as $taxId) {
301 return $taxSelectOptions;
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTaxonomySelectInputOptions()
__construct(ilCtrl $ctrl, ilAccessHandler $access, ilLanguage $lng, ilGlobalTemplateInterface $tpl, ilTabsGUI $tabs, ilObjQuestionPoolGUI $poolGUI)
Constructor.
static _lookupTitle(int $obj_id)
formPropertyExists(ilPropertyFormGUI $form, $propertyId)
static isSkillManagementGloballyActivated()
executeCommand()
Command Execution.
This class represents a text area property in a property form.
showFormCmd(ilPropertyFormGUI $form=null)
const CMD_SHOW_FORM
command constants
performSaveForm(ilPropertyFormGUI $form)