19 declare(strict_types=1);
31 protected \ILIAS\HTTP\Services
$http;
40 $this->
lng = $DIC->language();
41 $this->
user = $DIC->user();
42 $this->
http = $DIC->http();
53 static fn ($value) => is_int($value) ? (
string) $value : $value,
68 $title->setRequired(
true);
69 $form->addItem($title);
72 $form->addItem($description);
92 $this->
lng->loadLanguageModule(
'rep');
96 $title->setRequired(
true);
97 $form->addItem($title);
100 $form->addItem($description);
103 $section->setTitle($this->
lng->txt(
'rep_activation_availability'));
104 $form->addItem($section);
107 $online->
setInfo($this->
lng->txt(
'chtr_activation_online_info'));
108 $form->addItem($online);
112 $form->addItem($dur);
114 $visible =
new ilCheckboxInputGUI($this->
lng->txt(
'rep_activation_limited_visibility'),
'access_visibility');
116 $visible->setInfo($this->
lng->txt(
'chtr_activation_limited_visibility_info'));
117 $dur->addSubItem($visible);
120 $presentationHeader->setTitle($this->
lng->txt(
'settings_presentation_header'));
121 $form->addItem($presentationHeader);
128 $num_msg_history =
new ilNumberInputGUI($this->
lng->txt(
'display_past_msgs'),
'display_past_msgs');
129 $num_msg_history->
setSuffix($this->
lng->txt(
'display_past_msgs_suffix'));
130 $num_msg_history->allowDecimals(
false);
131 $num_msg_history->setSize(5);
132 $num_msg_history->setInfo($this->
lng->txt(
'hint_display_past_msgs'));
133 $num_msg_history->setMinValue(0);
134 $num_msg_history->setMaxValue(100);
135 $form->addItem($num_msg_history);
138 $cb_history->
setInfo($this->
lng->txt(
'chat_enable_history_info'));
139 $form->addItem($cb_history);
142 $functionsnHeader->setTitle($this->
lng->txt(
'chat_settings_functions_header'));
143 $form->addItem($functionsnHeader);
146 $cb->
setInfo($this->
lng->txt(
'anonymous_hint'));
152 $txt->
setInfo($this->
lng->txt(
'autogen_usernames_info'));
153 $cb->addSubItem($txt);
157 $cb->
setInfo($this->
lng->txt(
'private_rooms_enabled_info'));
172 $file_input->setPostVar(
'file_to_upload');
173 $file_input->setTitle($this->
lng->txt(
'upload'));
174 $form->addItem($file_input);
175 $form->addCommandButton(
'UploadFile-uploadFile', $this->
lng->txt(
'submit'));
177 $form->setTarget(
'_blank');
189 $form->setPreventDoubleSubmission(
false);
194 $duration->setEndText($this->
lng->txt(
'duration_to'));
195 $duration->setShowTime(
true);
196 $duration->setRequired(
true);
197 $form->addItem($duration);
213 foreach ($name_options as
$key => $option) {
215 $radio->addOption($opt);
218 $custom_opt =
new ilRadioOption($this->
lng->txt(
'custom_username'),
'custom_username');
219 $radio->addOption($custom_opt);
222 $custom_opt->addSubItem(
$txt);
223 $form->addItem($radio);
225 if ($this->
user->isAnonymous()) {
226 $radio->setValue(
'anonymousName');
228 $radio->setValue(
'fullname');
242 $form->setPreventDoubleSubmission(
false);
251 $options[$session[
'connected'] .
',' .
255 $list->setOptions($options);
256 $list->setRequired(
true);
258 $form->addItem($list);
268 $form->addItem($enable_chat);
271 $enable_osc->
setInfo($this->
lng->txt(
'chatroom_enable_osc_info'));
272 $enable_chat->addSubItem($enable_osc);
275 $this->
lng->txt(
'osc_adm_browser_noti_label'),
276 'enable_browser_notifications' 278 $oscBrowserNotificationStatus->
setInfo($this->
lng->txt(
'osc_adm_browser_noti_info'));
279 $oscBrowserNotificationStatus->setValue(
'1');
280 $enable_osc->addSubItem($oscBrowserNotificationStatus);
283 $this->
lng->txt(
'osc_adm_conv_idle_state_threshold_label'),
284 'conversation_idle_state_in_minutes' 287 $oscBrowserNotificationIdleTime->setSuffix($this->
lng->txt(
'minutes'));
288 $oscBrowserNotificationIdleTime->setMinValue(1);
289 $oscBrowserNotificationIdleTime->setSize(5);
290 $oscBrowserNotificationIdleTime->setInfo($this->
lng->txt(
'osc_adm_conv_idle_state_threshold_info'));
291 $enable_osc->addSubItem($oscBrowserNotificationIdleTime);
294 $enable_smilies->
setInfo($this->
lng->txt(
'hint_enable_smilies'));
295 $enable_chat->addSubItem($enable_smilies);
298 $name->setInfo($this->
lng->txt(
'chatroom_client_name_info'));
299 $name->setRequired(
true);
300 $name->setMaxLength(100);
301 $enable_chat->addSubItem(
$name);
304 $this->
lng->txt(
'chatroom_auth'),
308 $auth->setInfo($this->
lng->txt(
'chat_auth_token_info'));
311 ilAdministrationGUI::class,
312 ilObjChatroomGUI::class,
313 ilPropertyFormGUI::class,
314 ilFormPropertyDispatchGUI::class,
315 ilChatroomAuthInputGUI::class,
318 $auth->setRequired(
true);
319 $enable_chat->addSubItem(
$auth);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static http()
Fetches the global http state from ILIAS.
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false)
Format a period of two dates Shows: 14.
This class represents a text area property in a property form.