84 $this->poolOBJ = $poolGUI->object;
94 if (!$this->access->checkAccess(
'write',
'', $this->poolGUI->ref_id)) {
96 $this->ctrl->redirectByClass(
'ilObjQuestionPoolGUI',
'infoScreen');
101 $this->tabs->activateTab(
'settings');
105 $nextClass = $this->ctrl->getNextClass();
107 switch ($nextClass) {
109 $cmd = $this->ctrl->getCmd(self::CMD_SHOW_FORM) .
'Cmd';
116 if ($form === null) {
120 $this->tpl->setContent($this->ctrl->getHTML($form));
129 $errors = !$form->checkInput();
130 $form->setValuesByPost();
145 ilUtil::sendSuccess($this->lng->txt(
"msg_obj_modified"),
true);
146 $this->ctrl->redirect($this, self::CMD_SHOW_FORM);
153 include_once
'Services/MetaData/classes/class.ilMD.php';
154 $md_obj =
new ilMD($this->poolOBJ->getId(), 0,
"qpl");
162 $md_desc_ids = $md_section->getDescriptionIds();
164 $md_desc = $md_section->getDescription(array_pop($md_desc_ids));
165 $md_desc->setDescription($form->
getItemByPostVar(
'description')->getValue());
168 $md_desc = $md_section->addDescription();
169 $md_desc->setDescription($form->
getItemByPostVar(
'description')->getValue());
174 $this->poolOBJ->setDescription($form->
getItemByPostVar(
'description')->getValue());
175 $this->poolOBJ->update();
178 $this->poolOBJ->setOnline($online->getChecked());
181 $this->poolOBJ->setShowTaxonomies($showTax->getChecked());
184 $this->poolOBJ->setNavTaxonomyId($navTax->getValue());
186 $DIC->object()->commonSettings()->legacyForm($form, $this->poolOBJ)->saveTileImage();
190 $this->poolOBJ->setSkillServiceEnabled($skillService->getChecked());
193 $this->poolOBJ->saveToDb();
200 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
203 $form->setFormAction($this->ctrl->getFormAction($this));
204 $form->addCommandButton(self::CMD_SAVE_FORM, $this->lng->txt(
'save'));
206 $form->setTitle($this->lng->txt(
'qpl_form_general_settings'));
207 $form->setId(
'properties');
209 include_once
'Services/MetaData/classes/class.ilMD.php';
210 $md_obj =
new ilMD($this->poolOBJ->getId(), 0,
"qpl");
214 $title->setRequired(
true);
215 $title->setValue($md_section->getTitle());
216 $form->addItem($title);
218 $ids = $md_section->getDescriptionIds();
220 $desc_obj = $md_section->getDescription(array_pop($ids));
225 $desc->setValue($desc_obj->getDescription());
226 $form->addItem($desc);
231 $online =
new ilCheckboxInputGUI($this->lng->txt(
'qpl_settings_general_form_property_online'),
'online');
232 $online->
setInfo($this->lng->txt(
'qpl_settings_general_form_property_online_description'));
233 $online->setChecked($this->poolOBJ->getOnline());
234 $form->addItem($online);
238 $showTax =
new ilCheckboxInputGUI($this->lng->txt(
'qpl_settings_general_form_property_show_taxonomies'),
'show_taxonomies');
239 $showTax->
setInfo($this->lng->txt(
'qpl_settings_general_form_prop_show_tax_desc'));
240 $showTax->setChecked($this->poolOBJ->getShowTaxonomies());
241 $form->addItem($showTax);
247 $navTax =
new ilSelectInputGUI($this->lng->txt(
'qpl_settings_general_form_property_nav_taxonomy'),
'nav_taxonomy');
248 $navTax->setInfo($this->lng->txt(
'qpl_settings_general_form_property_nav_taxonomy_description'));
249 $navTax->setValue($this->poolOBJ->getNavTaxonomyId());
250 $navTax->setOptions($taxSelectOptions);
251 $showTax->addSubItem($navTax);
254 $section->setTitle($this->lng->txt(
'tst_presentation_settings_section'));
257 $DIC->object()->commonSettings()->legacyForm($form, $this->poolOBJ)->addTileImage();
263 $otherHead->setTitle($this->lng->txt(
'obj_features'));
264 $form->addItem($otherHead);
266 $skillService =
new ilCheckboxInputGUI($this->lng->txt(
'tst_activate_skill_service'),
'skill_service');
267 $skillService->
setChecked($this->poolOBJ->isSkillServiceEnabled());
268 $form->addItem($skillService);
276 $taxSelectOptions = array(
277 '0' => $this->lng->txt(
'qpl_settings_general_form_property_opt_notax_selected')
280 foreach ($this->poolOBJ->getTaxonomyIds() as $taxId) {
284 return $taxSelectOptions;
This class provides processing control methods.
getTaxonomySelectInputOptions()
static _lookupTitle($a_id)
lookup object title
__construct(ilCtrl $ctrl, ilAccessHandler $access, ilLanguage $lng, ilGlobalTemplateInterface $tpl, ilTabsGUI $tabs, ilObjQuestionPoolGUI $poolGUI)
Constructor.
Interface ilAccessHandler.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
setCols($a_cols)
Set Cols.
Class ilObjQuestionPoolGUI.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
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)