24 public function __construct($a_data, $a_id, $a_call_by_reference =
true, $a_prepare_output =
true)
28 $this->rbac = $DIC->rbac();
29 $this->error = $DIC[
'ilErr'];
33 $this->lng->loadLanguageModule(
'forum');
41 if (!$this->rbac->system()->checkAccess(
'visible,read', $this->object->getRefId())) {
42 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
45 $next_class = $this->ctrl->getNextClass($this);
46 $cmd = $this->ctrl->getCmd();
50 switch ($next_class) {
51 case 'ilpermissiongui':
52 $this->tabs_gui->setTabActive(
'perm_settings');
57 if (!$cmd || $cmd ==
'view') {
58 $cmd =
'editSettings';
72 if ($this->rbac->system()->checkAccess(
'visible,read', $this->object->getRefId())) {
73 $this->tabs_gui->addTarget(
75 $this->ctrl->getLinkTarget($this,
'editSettings'),
76 array(
'editSettings',
'view')
80 if ($this->rbac->system()->checkAccess(
'edit_permission', $this->object->getRefId())) {
81 $this->tabs_gui->addTarget(
83 $this->ctrl->getLinkTargetByClass(
'ilpermissiongui',
'perm'),
95 $this->tabs_gui->activateTab(
'settings');
102 $this->tpl->setContent($form->getHtml());
113 if (!$form->checkInput()) {
114 $form->setValuesByPost();
120 $frma_set->set(
'forum_overview', $form->getInput(
'forum_overview'));
121 $this->
settings->set(
'file_upload_allowed_fora', (
int) $form->getInput(
'file_upload_allowed_fora'));
122 $this->
settings->set(
'send_attachments_by_mail', (
int) $form->getInput(
'send_attachments_by_mail'));
123 $this->
settings->set(
'enable_fora_statistics', (
int) $form->getInput(
'fora_statistics'));
124 $this->
settings->set(
'enable_anonymous_fora', (
int) $form->getInput(
'anonymous_fora'));
127 $this->
settings->set(
'forum_notification', (
int) $form->getInput(
'forum_notification'));
130 ilCaptchaUtil::setActiveForForum((
bool) $form->getInput(
'activate_captcha_anonym'));
132 $this->
settings->set(
'save_post_drafts', (
int) $form->getInput(
'save_post_drafts'));
133 $this->
settings->set(
'autosave_drafts', (
int) $form->getInput(
'autosave_drafts'));
134 $this->
settings->set(
'autosave_drafts_ival', (
int) $form->getInput(
'autosave_drafts_ival'));
136 ilUtil::sendSuccess($this->lng->txt(
'settings_saved'));
137 $form->setValuesByPost();
149 'forum_overview' => (
bool) $frma_set->get(
'forum_overview',
false),
150 'fora_statistics' => (bool) $this->
settings->get(
'enable_fora_statistics',
false),
151 'anonymous_fora' => (bool) $this->
settings->get(
'enable_anonymous_fora',
false),
152 'forum_notification' => (int) $this->
settings->get(
'forum_notification') === 1 ? true :
false,
153 'activate_captcha_anonym' => ilCaptchaUtil::isActiveForForum(),
155 'save_post_drafts' => (int) $this->
settings->get(
'save_post_drafts', 0),
156 'autosave_drafts' => (int) $this->
settings->get(
'autosave_drafts', 0),
157 'autosave_drafts_ival' => (int) $this->
settings->get(
'autosave_drafts_ival', 30),
158 'send_attachments_by_mail' => (bool) $this->
settings->get(
'send_attachments_by_mail',
false)
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'));
175 $form->addItem($frm_radio);
177 $check =
new ilCheckboxInputGui($this->lng->txt(
'enable_fora_statistics'),
'fora_statistics');
178 $check->setInfo($this->lng->txt(
'enable_fora_statistics_desc'));
179 $form->addItem($check);
181 $check =
new ilCheckboxInputGui($this->lng->txt(
'enable_anonymous_fora'),
'anonymous_fora');
182 $check->setInfo($this->lng->txt(
'enable_anonymous_fora_desc'));
183 $form->addItem($check);
186 $this->lng->txt(
'file_upload_allowed_fora'),
187 'file_upload_allowed_fora' 190 $this->lng->txt(
'file_upload_option_allow'),
192 $this->lng->txt(
'file_upload_option_allow_info')
194 $file_upload->addOption($option_all_forums);
197 $this->lng->txt(
'file_upload_option_disallow'),
199 $this->lng->txt(
'file_upload_allowed_fora_desc')
201 $file_upload->addOption($option_per_forum);
203 $form->addItem($file_upload);
212 $notifications =
new ilCheckboxInputGui($this->lng->txt(
'cron_forum_notification'),
'forum_notification');
213 $notifications->setInfo($this->lng->txt(
'cron_forum_notification_desc'));
214 $notifications->setValue(1);
215 $form->addItem($notifications);
218 $check =
new ilCheckboxInputGui($this->lng->txt(
'enable_send_attachments'),
'send_attachments_by_mail');
219 $check->setInfo($this->lng->txt(
'enable_send_attachments_desc'));
221 $form->addItem($check);
223 $cap =
new ilCheckboxInputGUI($this->lng->txt(
'adm_captcha_anonymous_short'),
'activate_captcha_anonym');
224 $cap->
setInfo($this->lng->txt(
'adm_captcha_anonymous_frm'));
227 $cap->setAlert(ilCaptchaUtil::getPreconditionsMessage());
229 $form->addItem($cap);
231 $drafts =
new ilCheckboxInputGUI($this->lng->txt(
'adm_save_drafts'),
'save_post_drafts');
232 $drafts->
setInfo($this->lng->txt(
'adm_save_drafts_desc'));
233 $drafts->setValue(1);
235 $autosave_drafts =
new ilCheckboxInputGUI($this->lng->txt(
'adm_autosave_drafts'),
'autosave_drafts');
236 $autosave_drafts->
setInfo($this->lng->txt(
'adm_autosave_drafts_desc'));
237 $autosave_drafts->setValue(1);
239 $autosave_interval =
new ilNumberInputGUI($this->lng->txt(
'adm_autosave_ival'),
'autosave_drafts_ival');
241 $autosave_interval->setMinValue(30);
242 $autosave_interval->setMaxValue(60 * 60);
243 $autosave_interval->setSize(10);
244 $autosave_interval->setSuffix($this->lng->txt(
'seconds'));
245 $autosave_drafts->addSubItem($autosave_interval);
246 $drafts->addSubItem($autosave_drafts);
247 $form->addItem($drafts);
250 $form->addCommandButton(
'saveSettings', $this->lng->txt(
'save'));
262 switch ($a_form_id) {
270 return array(array(
"editSettings", $fields));
277 return array(
'obj_frma' => array(
'editSettings', $fields));
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.
populateForm(ilPropertyFormGUI $form)
const FILE_UPLOAD_INDIVIDUAL
prepareOutput($a_show_subobjects=true)
prepare output
const FILE_UPLOAD_GLOBALLY_ALLOWED
saveSettings()
Save settings.
editSettings(ilPropertyFormGUI $form=null)
Class ilObjectGUI Basic methods of all Output classes.
addToExternalSettingsForm($a_form_id)
Forum Administration Settings.
__construct(Container $dic, ilPlugin $plugin)
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.
checkPermissionBool($a_perm, $a_cmd="", $a_type="", $a_ref_id=null)
Check permission.