58 public function __construct($a_data, $a_id, $a_call_by_reference =
true, $a_prepare_output =
true)
66 $this->error = $DIC[
'ilErr'];
68 $this->rbacsystem = $this->dic->rbac()->system();
69 $this->lng = $this->dic->language();
70 $this->lng->loadLanguageModule(
'dateplaner');
71 $this->lng->loadLanguageModule(
'jscalendar');
82 $next_class = $this->ctrl->getNextClass($this);
83 $cmd = $this->ctrl->getCmd();
87 if (!$this->rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
88 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
91 switch ($next_class) {
92 case 'ilpermissiongui':
93 $this->tabs_gui->setTabActive(
'perm_settings');
94 include_once(
"Services/AccessControl/classes/class.ilPermissionGUI.php");
96 $ret = &$this->ctrl->forwardCommand($perm_gui);
100 $this->tabs_gui->setTabActive(
'settings');
102 if (!$cmd || $cmd ==
'view') {
124 $ilAccess = $DIC[
'ilAccess'];
126 if ($ilAccess->checkAccess(
"read",
'', $this->object->getRefId())) {
127 $this->tabs_gui->addTarget(
129 $this->ctrl->getLinkTarget($this,
"settings"),
130 array(
"settings",
"view")
134 if ($ilAccess->checkAccess(
'edit_permission',
'', $this->object->getRefId())) {
135 $this->tabs_gui->addTarget(
137 $this->ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm"),
151 if (!$this->rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
152 $ilErr->raiseError($this->lng->txt(
'no_permission'), $ilErr->WARNING);
155 $this->tabs_gui->setTabActive(
'settings');
157 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.settings.html',
'Services/Calendar');
158 $this->tpl->setVariable(
'CAL_SETTINGS', $this->form->getHTML());
172 $this->
settings->setDefaultWeekStart((
int) $_POST[
'default_week_start']);
174 $this->
settings->setDefaultDateFormat((
int) $_POST[
'default_date_format']);
175 $this->
settings->setDefaultTimeFormat((
int) $_POST[
'default_time_format']);
176 $this->
settings->setEnableGroupMilestones((
int) $_POST[
'enable_grp_milestones']);
177 $this->
settings->enableCourseCalendar((
int) $_POST[
'visible_crs']);
178 $this->
settings->enableGroupCalendar((
int) $_POST[
'visible_grp']);
179 $this->
settings->setDefaultDayStart((
int) $_POST[
'dst']);
180 $this->
settings->setDefaultDayEnd((
int) $_POST[
'den']);
181 $this->
settings->enableSynchronisationCache((
bool) $_POST[
'sync_cache']);
182 $this->
settings->setSynchronisationCacheMinutes((
int) $_POST[
'sync_cache_time']);
183 $this->
settings->setCacheMinutes((
int) $_POST[
'cache_time']);
184 $this->
settings->useCache((
bool) $_POST[
'cache']);
185 $this->
settings->enableNotification((
bool) $_POST[
'cn']);
186 $this->
settings->enableUserNotification((
bool) $_POST[
'cnu']);
187 $this->
settings->enableConsultationHours((
bool) $_POST[
'ch']);
188 $this->
settings->enableCGRegistration((
bool) $_POST[
'cgr']);
189 $this->
settings->enableWebCalSync((
bool) $_POST[
'webcal']);
190 $this->
settings->setWebCalSyncHours((
int) $_POST[
'webcal_hours']);
191 $this->
settings->setShowWeeks((
int) $_POST[
'show_weeks']);
192 $this->
settings->enableBatchFileDownloads((
bool) $_POST[
'batch_files']);
194 if (((
int) $_POST[
'den']) < (
int) $_POST[
'dst']) {
202 ilUtil::sendSuccess($this->lng->txt(
'settings_saved'));
213 include_once(
'Services/Calendar/classes/class.ilCalendarSettings.php');
224 if (is_object($this->form)) {
229 $this->form->setFormAction($this->ctrl->getFormAction($this));
230 $this->form->setTitle($this->lng->txt(
'cal_global_settings'));
234 $this->form->addCommandButton(
'save', $this->lng->txt(
'save'));
239 $check->setChecked($this->
settings->isEnabled() ? true :
false);
240 $this->form->addItem($check);
244 $this->form->addItem($server_tz);
246 $select =
new ilSelectInputGUI($this->lng->txt(
'cal_def_timezone'),
'default_timezone');
248 $select->setInfo($this->lng->txt(
'cal_def_timezone_info'));
249 $select->setValue($this->
settings->getDefaultTimeZone());
250 $this->form->addItem($select);
253 $select =
new ilSelectInputGUI($this->lng->txt(
'cal_def_date_format'),
'default_date_format');
254 $select->setOptions(array(
258 $select->setInfo($this->lng->txt(
'cal_def_date_format_info'));
259 $select->setValue($this->
settings->getDefaultDateFormat());
260 $this->form->addItem($select);
262 $select =
new ilSelectInputGUI($this->lng->txt(
'cal_def_time_format'),
'default_time_format');
263 $select->setOptions(array(
266 $select->setInfo($this->lng->txt(
'cal_def_time_format_info'));
267 $select->setValue($this->
settings->getDefaultTimeFormat());
268 $this->form->addItem($select);
275 $radio->addOption($option);
277 $radio->addOption($option);
279 $this->form->addItem($radio);
283 $cb->
setInfo($this->lng->txt(
"cal_show_weeks_info"));
285 $cb->setChecked($this->
settings->getShowWeeks());
286 $this->form->addItem($cb);
290 $day_start =
new ilSelectInputGUI($this->lng->txt(
'cal_def_day_start'),
'dst');
291 $day_start->setOptions(
294 $day_start->setValue($this->
settings->getDefaultDayStart());
295 $this->form->addItem($day_start);
298 $day_end->setOptions(
301 $day_end->setValue($this->
settings->getDefaultDayEnd());
302 $this->form->addItem($day_end);
306 $sync->setChecked($this->
settings->isWebCalSyncEnabled());
307 $sync->setInfo($this->lng->txt(
'cal_webcal_sync_info'));
310 $sync_min->setSize(2);
311 $sync_min->setMaxLength(3);
312 $sync_min->setValue($this->
settings->getWebCalSyncHours());
313 $sync_min->setSuffix($this->lng->txt(
'hours'));
314 $sync->addSubItem($sync_min);
316 $this->form->addItem($sync);
319 $batch_files_download =
new ilCheckboxInputGUI($this->lng->txt(
'cal_batch_file_downloads'),
"batch_files");
321 $batch_files_download->setChecked($this->
settings->isBatchFileDownloadsEnabled());
322 $batch_files_download->setInfo($this->lng->txt(
'cal_batch_file_downloads_info'));
323 $this->form->addItem($batch_files_download);
327 $mil->setTitle($this->lng->txt(
'cal_milestone_settings'));
328 $this->form->addItem($mil);
330 $checkm =
new ilCheckboxInputGUI($this->lng->txt(
'cal_enable_group_milestones'),
'enable_grp_milestones');
332 $checkm->setChecked($this->
settings->getEnableGroupMilestones() ? true :
false);
333 $checkm->setInfo($this->lng->txt(
'cal_enable_group_milestones_desc'));
334 $this->form->addItem($checkm);
338 $con->setTitle($this->lng->txt(
'cal_ch_form_header'));
339 $this->form->addItem($con);
342 $ch->
setInfo($this->lng->txt(
'cal_ch_form_info'));
344 $ch->setChecked($this->
settings->areConsultationHoursEnabled());
345 $this->form->addItem($ch);
349 $rep->setTitle(
$GLOBALS[
'DIC'][
'lng']->txt(
'cal_setting_global_vis_repos'));
350 $this->form->addItem($rep);
353 $crs->setInfo(
$GLOBALS[
'DIC'][
'lng']->txt(
'cal_setting_global_crs_vis_info'));
355 $crs->setInfo(
$GLOBALS[
'DIC'][
'lng']->txt(
'cal_setting_global_crs_vis_info'));
356 $crs->setChecked($this->
settings->isCourseCalendarEnabled());
357 $this->form->addItem($crs);
360 $grp->setInfo(
$GLOBALS[
'DIC'][
'lng']->txt(
'cal_setting_global_grp_vis_info'));
362 $grp->setInfo(
$GLOBALS[
'DIC'][
'lng']->txt(
'cal_setting_global_grp_vis_info'));
363 $grp->setChecked($this->
settings->isGroupCalendarEnabled());
364 $this->form->addItem($grp);
371 $not->setTitle($this->lng->txt(
'notifications'));
372 $this->form->addItem($not);
377 $cgn->setChecked($this->
settings->isNotificationEnabled());
378 $cgn->setInfo($this->lng->txt(
'cal_adm_notification_info'));
379 $this->form->addItem($cgn);
382 $cnu->setOptionTitle($this->lng->txt(
'cal_notification_users'));
384 $cnu->setChecked($this->
settings->isUserNotificationEnabled());
385 $cnu->setInfo($this->lng->txt(
'cal_adm_notification_user_info'));
386 $this->form->addItem($cnu);
391 $book->setTitle($this->lng->txt(
'cal_registrations'));
392 $this->form->addItem($book);
396 $cgn->setChecked($this->
settings->isCGRegistrationEnabled());
397 $cgn->setInfo($this->lng->txt(
'cal_cg_registration_info'));
398 $this->form->addItem($cgn);
402 $sec->setTitle($this->lng->txt(
'cal_cache_settings'));
403 $this->form->addItem($sec);
407 $cache->setInfo($this->lng->txt(
'cal_sync_cache_info'));
408 $cache->setRequired(
true);
410 $sync_cache =
new ilRadioOption($this->lng->txt(
'cal_sync_disabled'), 0);
411 $cache->addOption($sync_cache);
413 $sync_cache =
new ilRadioOption($this->lng->txt(
'cal_sync_enabled'), 1);
414 $cache->addOption($sync_cache);
417 $cache_t->setValue($this->
settings->getSynchronisationCacheMinutes());
418 $cache_t->setMinValue(0);
419 $cache_t->setSize(3);
420 $cache_t->setMaxLength(3);
421 $cache_t->setSuffix($this->lng->txt(
'form_minutes'));
422 $sync_cache->addSubItem($cache_t);
424 $this->form->addItem($cache);
429 $cache->setInfo($this->lng->txt(
'cal_cache_info'));
430 $cache->setRequired(
true);
432 $sync_cache =
new ilRadioOption($this->lng->txt(
'cal_cache_disabled'), 0);
433 $cache->addOption($sync_cache);
435 $sync_cache =
new ilRadioOption($this->lng->txt(
'cal_cache_enabled'), 1);
436 $cache->addOption($sync_cache);
439 $cache_t->setValue($this->
settings->getCacheMinutes());
440 $cache_t->setMinValue(0);
441 $cache_t->setSize(3);
442 $cache_t->setMaxLength(3);
443 $cache_t->setSuffix($this->lng->txt(
'form_minutes'));
444 $sync_cache->addSubItem($cache_t);
445 $this->form->addItem($cache);
450 switch ($a_form_id) {
458 $fields[
'cal_setting_global_vis_repos'] = array(null, null, $subitems);
464 $fields[
'cal_notification'] = array(null, null, $subitems);
468 return array(array(
"settings", $fields));
477 $fields[
'cal_setting_global_vis_repos'] = array(null, null, $subitems);
483 $fields[
'cal_notification'] = array(null, null, $subitems);
487 return array(array(
"settings", $fields));
static _getDefaultTimeZone()
Calculate and set default time zone.
This class represents an option in a radio group.
executeCommand()
Execute command.
static _getInstance()
get singleton instance
setValue($a_value)
Set Value.
static getHourSelection($a_format)
Get hour selectio depending on user specific hour format.
static _getShortTimeZoneList()
get short timezone list
addToExternalSettingsForm($a_form_id)
prepareOutput($a_show_subobjects=true)
prepare output
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
Constructor.
Class ilObjectGUI Basic methods of all Output classes.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
This class represents a non editable value in a property form.
__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.
initCalendarSettings()
init calendar settings
initFormSettings()
Init settings property form.
checkPermissionBool($a_perm, $a_cmd="", $a_type="", $a_ref_id=null)
Check permission.