19 declare(strict_types=1);
43 $this->tpl = $DIC->ui()->mainTemplate();
44 $this->
lng = $DIC->language();
45 $this->
lng->loadLanguageModule(
'dateplaner');
46 $this->
lng->loadLanguageModule(
'jscalendar');
48 $this->
ctrl = $DIC->ctrl();
49 $this->
user = $DIC->user();
56 $next_class = $this->
ctrl->getNextClass();
57 switch ($next_class) {
59 $cmd = $this->
ctrl->getCmd(
"show");
70 $this->tpl->setContent($form->getHTML());
75 $this->
ctrl->returnToParent($this);
81 if ($form->checkInput()) {
82 $this->user_settings->setTimeZone($form->getInput(
'timezone'));
83 $this->user_settings->setExportTimeZoneType((
int) $form->getInput(
'export_tz'));
84 $this->user_settings->setWeekStart((
int) $form->getInput(
'weekstart'));
85 $this->user_settings->setDateFormat((
int) $form->getInput(
'date_format'));
86 $this->user_settings->setTimeFormat((
int) $form->getInput(
'time_format'));
87 $this->user_settings->setDayStart((
int) $form->getInput(
'dst'));
88 $this->user_settings->setDayEnd((
int) $form->getInput(
'den'));
89 $this->user_settings->setShowWeeks((
bool) $form->getInput(
'show_weeks'));
90 $this->user_settings->save();
91 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
92 $this->
ctrl->redirect($this,
"show");
94 $form->setValuesByPost();
95 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'),
true);
103 $form->setFormAction($this->
ctrl->getFormAction($this,
'save'));
104 $form->setTitle($this->
lng->txt(
'cal_user_settings'));
105 $form->addCommandButton(
'save', $this->
lng->txt(
'save'));
110 $select->setInfo($this->
lng->txt(
'cal_timezone_info'));
111 $select->setValue($this->user_settings->getTimeZone());
112 $form->addItem($select);
115 $export_type->
setValue((
string) $this->user_settings->getExportTimeZoneType());
118 $this->
lng->txt(
'cal_export_timezone_tz'),
121 $export_type->addOption($export_tz);
123 $this->
lng->txt(
'cal_export_timezone_utc'),
126 $export_type->addOption($export_utc);
127 $form->addItem($export_type);
136 $select->setInfo($this->
lng->txt(
'cal_date_format_info'));
137 $select->setValue($this->user_settings->getDateFormat());
138 $form->addItem($select);
145 $select->setInfo($this->
lng->txt(
'cal_time_format_info'));
146 $select->setValue($this->user_settings->getTimeFormat());
147 $form->addItem($select);
151 $week_month->setTitle($this->
lng->txt(
'cal_week_month_view'));
152 $form->addItem($week_month);
155 $radio->
setValue((
string) $this->user_settings->getWeekStart());
158 $radio->addOption($option);
160 $radio->addOption($option);
161 $form->addItem($radio);
163 if ($this->
settings->getShowWeeks()) {
166 $cb->setInfo($this->
lng->txt(
"cal_usr_show_weeks_info"));
168 $cb->setChecked($this->user_settings->getShowWeeks());
174 $week_month->setTitle($this->
lng->txt(
'cal_day_week_view'));
175 $form->addItem($week_month);
181 $day_start->setValue($this->user_settings->getDayStart());
182 $form->addItem($day_start);
188 $day_end->setValue($this->user_settings->getDayEnd());
189 $form->addItem($day_end);
ilCalendarSettings $settings
This class represents an option in a radio group.
ilGlobalTemplateInterface $tpl
static _getShortTimeZoneList()
get short timezone list
static getHourSelection(int $a_format)
Get hour selection depending on user specific hour format.
static _getInstanceByUserId(int $a_user_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
show(?ilPropertyFormGUI $form=null)
ilCalendarUserSettings $user_settings
__construct()
Constructor public.