4 require_once
'Modules/Chatroom/classes/class.ilChatroom.php';
5 require_once
'Modules/Chatroom/classes/class.ilChatroomFormFactory.php';
6 require_once
'Modules/Chatroom/classes/class.ilChatroomAdmin.php';
7 require_once
'Modules/Chatroom/classes/class.ilChatroomConfigFileHandler.php';
39 $this->commonSettings =
new ilSetting(
'common');
40 $this->ilTpl = $DIC->ui()->mainTemplate();
53 $chatSettings =
new ilSetting(
'chatroom');
54 if ($chatSettings->get(
'chat_enabled',
false)) {
87 require_once
'Modules/Chatroom/classes/class.ilChatroomInstaller.php';
88 ilChatroomInstaller::ensureCorrectPublicChatroomTreeLocation($ref_id);
96 require_once
'Modules/Chatroom/classes/class.ilChatroomInstaller.php';
97 ilChatroomInstaller::createDefaultPublicRoom(
true);
98 ilUtil::sendSuccess($this->ilLng->txt(
'public_chat_created'),
true);
107 require_once
'Modules/Chatroom/classes/class.ilChatroomServerConnector.php';
110 $serverSettings[
'port'] &&
111 $serverSettings[
'address'] &&
124 $furtherInformation = sprintf($this->ilLng->txt(
'server_further_information'), $this->
getReadmePath());
125 $serverTpl =
new ilTemplate(
'tpl.chatroom_serversettings.html',
true,
true,
'Modules/Chatroom');
126 $serverTpl->setVariable(
'VAL_SERVERSETTINGS_FORM', $form->
getHTML());
127 $serverTpl->setVariable(
'LBL_SERVERSETTINGS_FURTHER_INFORMATION', $furtherInformation);
149 $form =
$factory->getClientSettingsForm();
151 if (!$form->checkInput()) {
152 $form->setValuesByPost();
157 $convIdleStateTime = max(1, (
int) (
int) $form->getInput(
'conversation_idle_state_in_minutes'));
160 'name' => (
string) $form->getInput(
'client_name'),
161 'enable_osd' => (boolean) $form->getInput(
'enable_osd'),
162 'enable_osc' => (boolean) $form->getInput(
'enable_osc'),
163 'enable_browser_notifications' => (boolean) $form->getInput(
'enable_browser_notifications'),
164 'conversation_idle_state_in_minutes' => $convIdleStateTime,
165 'osd_intervall' => (int) $form->getInput(
'osd_intervall'),
166 'chat_enabled' => ((boolean) $form->getInput(
'chat_enabled')),
167 'enable_smilies' => (
boolean) $form->getInput(
'enable_smilies'),
168 'play_invitation_sound' => (boolean) $form->getInput(
'play_invitation_sound'),
169 'auth' => $form->getInput(
'auth')
172 if (!$settings[
'chat_enabled']) {
173 $settings[
'enable_osc'] =
false;
176 $notificationSettings =
new ilSetting(
'notifications');
177 $notificationSettings->set(
'osd_polling_intervall', (
int) $form->getInput(
'osd_intervall'));
178 $notificationSettings->set(
'enable_osd', (
boolean) $form->getInput(
'enable_osd'));
180 $chatSettings =
new ilSetting(
'chatroom');
181 $chatSettings->set(
'chat_enabled', $settings[
'chat_enabled']);
182 $chatSettings->set(
'enable_browser_notifications', $settings[
'enable_browser_notifications']);
183 $chatSettings->set(
'conversation_idle_state_in_minutes', $convIdleStateTime);
184 $chatSettings->set(
'enable_osc', $settings[
'enable_osc']);
185 $chatSettings->set(
'play_invitation_sound', (
boolean) $form->getInput(
'play_invitation_sound'));
191 $fileHandler->createClientConfigFile($settings);
193 ilUtil::sendSuccess($this->ilLng->txt(
'settings_has_been_saved'),
true);
205 $this->gui->switchToVisibleMode();
210 if ($form === null) {
211 $clientSettings = $adminSettings->loadClientSettings();
213 $form =
$factory->getClientSettingsForm();
214 $form->setValuesByArray($clientSettings);
219 $form->setTitle($this->ilLng->txt(
'general_settings_title'));
221 $form->addCommandButton(
'view-saveClientSettings', $this->ilLng->txt(
'save'));
223 $form->getItemByPostVar(
'auth')->setIsReadOnly(
true);
228 $this->ilTpl->setVariable(
'ADM_CONTENT', $settingsTpl->get());
Class ilChatroomAdminViewGUI.
This class provides processing control methods.
static _hasUntrashedReference($a_obj_id)
checks wether an object has at least one reference that is not in trash
createPublicRoom()
Creates a public chatroom.
saveClientSettings()
Saves client settings fetched from $_POST.
checkServerConnection(array $serverSettings)
Checks for server connection.
redirectIfNoPermission($permission)
Checks for requested permissions and redirects if the permission check failed.
clientsettings(ilPropertyFormGUI $form=null)
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
getFormAction( $a_gui_obj, $a_fallback_cmd="", $a_anchor="", $a_asynch=false, $xml_style=false)
Get form action url for gui class object.
static checkUserPermissions($permissions, $ref_id, $send_info=true)
Checks user permissions by given array and ref_id.
Class ilChatroomGUIHandler.
static checkServerConnection($use_cache=true)
static _lookupObjId($a_id)
loadGeneralSettings()
Returns an array containing server settings from settingsTable.
getReadmePath()
Get the path to the README.txt file.
const CHATROOM_README_PATH
__construct(Container $dic, ilPlugin $plugin)
__construct(ilChatroomObjectGUI $gui)
Constructor.
saveClientSettings(stdClass $settings)
Saves given client $settings into settingsTable.
static getInstanceByRefId($a_ref_id, $stop_on_error=true)
get an instance of an Ilias object by reference id
executeDefault($requestedMethod)
createSettingTemplate(ilPropertyFormGUI $form)
redirect($a_gui_obj, $a_cmd="", $a_anchor="", $a_asynch=false)
Redirect to another command.