3 declare(strict_types=1);
36 protected \ILIAS\DI\Container
$dic;
48 $this->rbacsystem = $this->dic->rbac()->system();
49 $this->
ctrl = $this->dic->ctrl();
50 $this->tpl = $this->dic[
"tpl"];
51 $this->
toolbar = $this->dic->toolbar();
52 $this->
lng = $this->dic->language();
53 $ilCtrl = $this->dic->ctrl();
60 $ilCtrl->saveParameter($this, array(
"templ_id"));
69 $cmd = $ilCtrl->
getCmd(
"listSettingsTemplates");
75 $this->config = $a_val;
87 $this->request->getTemplateId(),
92 $this->request->getTemplateId()
104 if ($this->rbacsystem->checkAccess(
'write', $this->request->getRefId())) {
105 $ilToolbar->addButton(
106 $lng->
txt(
"adm_add_settings_template"),
107 $ilCtrl->getLinkTarget($this,
"addSettingsTemplate")
113 "listSettingsTemplates",
146 $ti->setMaxLength(200);
147 $ti->setRequired(
true);
149 if ($this->settings_template->getAutoGenerated()) {
150 $ti->setDisabled(
true);
153 $this->
form->addItem($ti);
158 if ($this->settings_template->getAutoGenerated()) {
161 $this->
form->addItem($ti);
164 $tabs = $this->
getConfig()->getHidableTabs();
165 if (is_array($tabs) && count($tabs) > 0) {
167 $sec->setTitle($lng->
txt(
"adm_hide_tabs"));
168 $this->
form->addItem($sec);
170 foreach ($tabs as $t) {
173 $this->
form->addItem($cb);
181 $sec->setTitle($lng->
txt(
"adm_predefined_settings"));
182 $this->
form->addItem($sec);
187 $this->
form->addItem($cb);
189 switch ($s[
"type"]) {
195 $cb->addSubItem($ti);
205 $si->setOptions($s[
"options"]);
206 $cb->addSubItem($si);
211 foreach ($s[
'options'] as
$key => $value) {
215 $cb->addSubItem($chbs);
227 if ($this->rbacsystem->checkAccess(
'write', $this->request->getRefId())) {
229 if ($a_mode ===
"create") {
230 $this->
form->addCommandButton(
"saveSettingsTemplate", $lng->
txt(
"save"));
231 $this->
form->addCommandButton(
"listSettingsTemplates", $lng->
txt(
"cancel"));
232 $this->
form->setTitle($lng->
txt(
"adm_add_settings_template"));
234 $this->
form->addCommandButton(
"updateSettingsTemplate", $lng->
txt(
"save"));
235 $this->
form->addCommandButton(
"listSettingsTemplates", $lng->
txt(
"cancel"));
236 $this->
form->setTitle($lng->
txt(
"adm_edit_settings_template"));
240 $this->
form->setFormAction($ilCtrl->getFormAction($this));
247 $values[
"title"] = $this->settings_template->getTitle();
248 $values[
"description"] = $this->settings_template->getDescription();
251 $tabs = $this->settings_template->getHiddenTabs();
252 foreach ($tabs as $t) {
253 $values[
"tab_" . $t] =
true;
257 $set = $this->settings_template->getSettings();
259 if (isset($set[$s[
"id"]])) {
260 $values[
"set_" . $s[
"id"]] =
true;
263 if (!is_array($set[$s[
"id"]][
"value"])) {
264 $ar = unserialize($set[$s[
"id"]][
"value"], [
'allowed_classes' =>
false]);
266 $ar = $set[$s[
"id"]][
"value"];
268 $values[
"value_" . $s[
"id"]] = is_array($ar) ? $ar : array();
270 $values[
"value_" . $s[
"id"]] = $set[$s[
"id"]][
"value"];
273 $values[
"hide_" . $s[
"id"]] = $set[$s[
"id"]][
"hide"];
276 $this->
form->setValuesByArray($values);
286 if ($this->
form->checkInput()) {
291 $settings_template->
create();
293 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
294 $ilCtrl->redirect($this,
"listSettingsTemplates");
297 $this->
form->setValuesByPost();
308 if ($this->
form->checkInput()) {
310 $this->settings_template->update();
312 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
313 $ilCtrl->redirect($this,
"listSettingsTemplates");
316 $this->
form->setValuesByPost();
328 foreach ($this->
getConfig()->getHidableTabs() as $t) {
329 if ($this->request->getTab($t[
"id"])) {
337 if ($this->request->getSetting($s[
"id"])) {
340 $this->request->getValue($s[
"id"]),
341 $this->request->getHide($s[
"id"])
353 if (count($this->request->getTemplateIds()) === 0) {
354 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"no_checkbox"),
true);
355 $ilCtrl->redirect($this,
"listSettingsTemplates");
358 $cgui->setFormAction($ilCtrl->getFormAction($this));
359 $cgui->setHeaderText($lng->
txt(
"adm_sure_delete_settings_template"));
360 $cgui->setCancel($lng->
txt(
"cancel"),
"listSettingsTemplates");
361 $cgui->setConfirm($lng->
txt(
"delete"),
"deleteSettingsTemplate");
363 foreach ($this->request->getTemplateIds() as
$i) {
375 foreach ($this->request->getTemplateIds() as
$i) {
379 $this->tpl->setOnScreenMessage(
'success',
"msg_obj_modified");
380 $ilCtrl->redirect($this,
"listSettingsTemplates");
setConfig(ilSettingsTemplateConfig $a_val)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setSetting(string $a_setting, $a_value, bool $a_hide=false)
Set setting.
getCmd(string $fallback_command=null)
Returns the command passed with the current POST or GET request.
static lookupTitle(int $a_id)
ilSettingsTemplateConfig $config
setContent(string $a_html)
Sets content for standard template.
getSettingsTemplateValues()
ilSettingsTemplate $settings_template
form( $class_path, string $cmd)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setValuesFromForm(ilSettingsTemplate $a_set_templ)
__construct(Container $dic, ilPlugin $plugin)
SettingsTemplateGUIRequest $request
This class represents a text area property in a property form.
confirmSettingsTemplateDeletion()
setDescription(string $a_val)
Settings templates table.
ilGlobalTemplateInterface $tpl
initSettingsTemplateForm(string $a_mode="edit")
Settings template application class.
addHiddenTab(string $a_tab_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...