31 bool $a_call_by_reference =
true,
32 bool $a_prepare_output =
true 36 $this->
lng = $DIC->language();
38 $this->
ctrl = $DIC->ctrl();
42 $this->
lng->loadLanguageModule(
"blog");
47 $next_class = $this->
ctrl->getNextClass($this);
48 $cmd = $this->
ctrl->getCmd();
52 switch ($next_class) {
53 case 'ilpermissiongui':
54 $this->tabs_gui->setTabActive(
'perm_settings');
56 $this->
ctrl->forwardCommand($perm_gui);
60 if (!$cmd || $cmd ===
'view') {
61 $cmd =
"editSettings";
72 $this->tabs_gui->addTarget(
74 $this->
ctrl->getLinkTarget($this,
"editSettings"),
75 array(
"editSettings",
"view")
80 $this->tabs_gui->addTarget(
82 $this->
ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm"),
94 $this->tabs_gui->setTabActive(
'settings');
97 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"blog_admin_toggle_info"));
99 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"blog_admin_inactive_info"));
105 $this->tpl->setContent($a_form->getHTML());
115 if ($form->checkInput()) {
116 $banner = (bool) $form->getInput(
"banner");
119 $blga_set->set(
"banner", $banner);
120 $blga_set->set(
"banner_width", (
int) $form->getInput(
"width"));
121 $blga_set->set(
"banner_height", (
int) $form->getInput(
"height"));
122 $blga_set->set(
"mask", (
bool) $form->getInput(
"mask"));
123 $blga_set->set(
"est_reading_time", (
bool) $form->getInput(
"est_reading_time"));
125 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
126 $ilCtrl->redirect($this,
"editSettings");
129 $form->setValuesByPost();
145 $form->setFormAction($this->
ctrl->getFormAction($this));
146 $form->setTitle($this->
lng->txt(
'blog_settings'));
149 $form->addCommandButton(
'saveSettings', $this->
lng->txt(
'save'));
150 $form->addCommandButton(
'cancel', $this->
lng->txt(
'cancel'));
155 $form->addItem($banner);
160 $banner->addSubItem($width);
165 $banner->addSubItem($height);
168 $banner->setChecked((
bool) $blga_set->get(
"banner",
'0'));
169 if ($blga_set->get(
"banner")) {
170 $width->setValue($blga_set->get(
"banner_width"));
171 $height->setValue($blga_set->get(
"banner_height"));
173 $width->setValue(1370);
174 $height->setValue(100);
178 $lng->
txt(
"blog_est_reading_time"),
182 $cb_prop->setChecked((
int) $blga_set->get(
"est_reading_time"));
183 $form->addItem($cb_prop);
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...
redirect(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
prepareOutput(bool $show_sub_objects=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct( $a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
editSettings(?ilPropertyFormGUI $a_form=null)
Class ilObjectGUI Basic methods of all Output classes.
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
__construct(Container $dic, ilPlugin $plugin)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)