4 require_once
'Services/Object/classes/class.ilObjectGUI.php';
20 public function __construct($a_data, $a_id, $a_call_by_reference =
true, $a_prepare_output =
true)
23 parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
24 $this->lng->loadLanguageModule(
'forum');
32 $next_class = $this->ctrl->getNextClass($this);
33 $cmd = $this->ctrl->getCmd();
39 case 'ilpermissiongui':
40 $this->tabs_gui->setTabActive(
'perm_settings');
41 require_once
'Services/AccessControl/classes/class.ilPermissionGUI.php';
48 $cmd =
'editSettings';
67 if($rbacsystem->checkAccess(
'visible,read', $this->object->getRefId()))
69 $this->tabs_gui->addTarget(
'settings',
70 $this->ctrl->getLinkTarget($this,
'editSettings'),
71 array(
'editSettings',
'view'));
74 if($rbacsystem->checkAccess(
'edit_permission', $this->object->getRefId()))
76 $this->tabs_gui->addTarget(
'perm_settings',
77 $this->ctrl->getLinkTargetByClass(
'ilpermissiongui',
'perm'),
78 array(),
'ilpermissiongui');
87 $this->tabs_gui->setTabActive(
'settings');
92 $this->populateForm($form);
95 $this->tpl->setContent($form->getHtml());
101 public function saveSettings()
111 if(!$form->checkInput())
113 $form->setValuesByPost();
119 $frma_set->set(
'forum_overview', $form->getInput(
'forum_overview'));
121 $ilSetting->set(
'enable_fora_statistics', (
int)$form->getInput(
'fora_statistics'));
122 $ilSetting->set(
'enable_anonymous_fora', (
int)$form->getInput(
'anonymous_fora'));
124 require_once
'Services/Cron/classes/class.ilCronManager.php';
127 $ilSetting->set(
'forum_notification', (
int)$form->getInput(
'forum_notification'));
130 require_once
'Services/Captcha/classes/class.ilCaptchaUtil.php';
131 ilCaptchaUtil::setActiveForForum((
bool)$form->getInput(
'activate_captcha_anonym'));
134 $form->setValuesByPost();
148 require_once
'Services/Captcha/classes/class.ilCaptchaUtil.php';
153 'forum_overview' => (
bool)$frma_set->get(
'forum_overview',
false),
154 'fora_statistics' => (bool)$ilSetting->get(
'enable_fora_statistics',
false),
155 'anonymous_fora' => (bool)$ilSetting->get(
'enable_anonymous_fora',
false),
156 'forum_notification' => (int)$ilSetting->get(
'forum_notification') === 1 ? true :
false,
157 'activate_captcha_anonym' => ilCaptchaUtil::isActiveForForum()
166 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
168 $form->
setFormAction($this->ctrl->getFormAction($this,
'saveSettings'));
169 $form->
setTitle($this->lng->txt(
'settings'));
171 $frm_radio =
new ilRadioGroupInputGUI($this->lng->txt(
'frm_displayed_infos'),
'forum_overview');
172 $frm_radio->
addOption(
new ilRadioOption($this->lng->txt(
'new') .
', ' . $this->lng->txt(
'is_read') .
', ' . $this->lng->txt(
'unread'),
'0'));
173 $frm_radio->addOption(
new ilRadioOption($this->lng->txt(
'is_read') .
', ' . $this->lng->txt(
'unread'),
'1'));
174 $frm_radio->setInfo($this->lng->txt(
'frm_disp_info_desc'));
177 $check =
new ilCheckboxInputGui($this->lng->txt(
'enable_fora_statistics'),
'fora_statistics');
178 $check->setInfo($this->lng->txt(
'enable_fora_statistics_desc'));
181 $check =
new ilCheckboxInputGui($this->lng->txt(
'enable_anonymous_fora'),
'anonymous_fora');
182 $check->setInfo($this->lng->txt(
'enable_anonymous_fora_desc'));
185 require_once
'Services/Cron/classes/class.ilCronManager.php';
188 require_once
'Services/Administration/classes/class.ilAdministrationSettingsFormHandler.php';
197 $notifications =
new ilCheckboxInputGui($this->lng->txt(
'cron_forum_notification'),
'forum_notification');
198 $notifications->setInfo($this->lng->txt(
'cron_forum_notification_desc'));
199 $notifications->setValue(1);
200 $form->
addItem($notifications);
203 require_once
'Services/Captcha/classes/class.ilCaptchaUtil.php';
204 $cap =
new ilCheckboxInputGUI($this->lng->txt(
'adm_captcha_anonymous_short'),
'activate_captcha_anonym');
205 $cap->
setInfo($this->lng->txt(
'adm_captcha_anonymous_frm'));
209 $cap->setAlert(ilCaptchaUtil::getPreconditionsMessage());
223 public function addToExternalSettingsForm($a_form_id)
239 return array(array(
"editSettings", $fields));
242 require_once
'Services/Captcha/classes/class.ilCaptchaUtil.php';
247 return array(
'obj_frma' => array(
'editSettings', $fields));
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
This class represents an option in a radio group.
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
Contructor public.
static checkFreetype()
Check whether captcha support is active.
editSettings(ilPropertyFormGUI $form=null)
Class ilObjectGUI Basic methods of all Output classes.
getAdminTabs(&$tabs_gui)
administration tabs show only permissions and trash folder
prepareOutput()
prepare output
Forum Administration Settings.
checkPermission($a_perm, $a_cmd="", $a_type="", $a_ref_id=null)
Check permission and redirect on error.
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
static isJobActive($a_job_id)
Check if given job is currently active.