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';
38 parent::__construct($gui);
39 $this->commonSettings =
new ilSetting(
'common');
40 $this->ilTpl = $DIC->ui()->mainTemplate();
61 if (!
$form->checkInput()) {
62 $form->setValuesByPost();
68 'protocol' =>
$form->getInput(
'protocol'),
69 'port' =>
$form->getInput(
'port'),
70 'address' =>
$form->getInput(
'address'),
71 'cert' =>
$form->getInput(
'cert'),
72 'key' =>
$form->getInput(
'key'),
73 'dhparam' =>
$form->getInput(
'dhparam'),
74 'log' =>
$form->getInput(
'log'),
75 'error_log' =>
$form->getInput(
'error_log'),
76 'ilias_proxy' =>
$form->getInput(
'ilias_proxy'),
77 'ilias_url' =>
$form->getInput(
'ilias_url'),
78 'client_proxy' =>
$form->getInput(
'client_proxy'),
79 'client_url' =>
$form->getInput(
'client_url'),
80 'sub_directory'=>
$form->getInput(
'sub_directory'),
81 'deletion_mode'=>
$form->getInput(
'deletion_mode'),
82 'deletion_unit'=>
$form->getInput(
'deletion_unit'),
83 'deletion_value'=>
$form->getInput(
'deletion_value'),
84 'deletion_time' =>
$form->getInput(
'deletion_time'),
91 $fileHandler->createServerConfigFile($settings);
106 $this->gui->switchToVisibleMode();
111 if (
$form === null) {
114 $form->setValuesByArray($serverSettings);
119 $form->setTitle($this->ilLng->txt(
'chatserver_settings_title'));
121 $form->addCommandButton(
'view-saveSettings', $this->ilLng->txt(
'save'));
126 $this->ilTpl->setVariable(
'ADM_CONTENT', $settingsTpl->get());
134 $chatSettings =
new ilSetting(
'chatroom');
135 if ($chatSettings->get(
'chat_enabled',
false)) {
168 require_once
'Modules/Chatroom/classes/class.ilChatroomInstaller.php';
169 ilChatroomInstaller::ensureCorrectPublicChatroomTreeLocation($ref_id);
177 require_once
'Modules/Chatroom/classes/class.ilChatroomInstaller.php';
178 ilChatroomInstaller::createDefaultPublicRoom(
true);
188 require_once
'Modules/Chatroom/classes/class.ilChatroomServerConnector.php';
191 $serverSettings[
'port'] &&
192 $serverSettings[
'address'] &&
205 $furtherInformation = sprintf($this->ilLng->txt(
'server_further_information'), $this->
getReadmePath());
206 $serverTpl =
new ilTemplate(
'tpl.chatroom_serversettings.html',
true,
true,
'Modules/Chatroom');
207 $serverTpl->setVariable(
'VAL_SERVERSETTINGS_FORM', $form->
getHTML());
208 $serverTpl->setVariable(
'LBL_SERVERSETTINGS_FURTHER_INFORMATION', $furtherInformation);
232 if (!
$form->checkInput()) {
233 $form->setValuesByPost();
239 'name' => (
string)
$form->getInput(
'client_name'),
240 'enable_osd' => (boolean)
$form->getInput(
'enable_osd'),
241 'enable_osc' => (boolean)
$form->getInput(
'enable_osc'),
242 'osd_intervall' => (int)
$form->getInput(
'osd_intervall'),
243 'chat_enabled' => ((boolean)
$form->getInput(
'chat_enabled')),
244 'enable_smilies' => (
boolean)
$form->getInput(
'enable_smilies'),
245 'play_invitation_sound' => (boolean)
$form->getInput(
'play_invitation_sound'),
246 'auth' =>
$form->getInput(
'auth')
249 if (!$settings[
'chat_enabled']) {
250 $settings[
'enable_osc'] =
false;
253 $notificationSettings =
new ilSetting(
'notifications');
254 $notificationSettings->set(
'osd_polling_intervall', (
int)
$form->getInput(
'osd_intervall'));
255 $notificationSettings->set(
'enable_osd', (
boolean)
$form->getInput(
'enable_osd'));
257 $chatSettings =
new ilSetting(
'chatroom');
258 $chatSettings->set(
'chat_enabled', $settings[
'chat_enabled']);
259 $chatSettings->set(
'enable_osc', $settings[
'enable_osc']);
260 $chatSettings->set(
'play_invitation_sound', (
boolean)
$form->getInput(
'play_invitation_sound'));
266 $fileHandler->createClientConfigFile($settings);
280 $this->gui->switchToVisibleMode();
285 if (
$form === null) {
286 $clientSettings = $adminSettings->loadClientSettings();
289 $form->setValuesByArray($clientSettings);
294 $form->setTitle($this->ilLng->txt(
'general_settings_title'));
296 $form->addCommandButton(
'view-saveClientSettings', $this->ilLng->txt(
'save'));
301 $this->ilTpl->setVariable(
'ADM_CONTENT', $settingsTpl->get());
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
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.
saveGeneralSettings(stdClass $settings)
Saves given $settings into settingsTable.
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.
executeDefault($method)
{}
clientsettings(ilPropertyFormGUI $form=null)
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
static checkUserPermissions($permissions, $ref_id, $send_info=true)
Checks user permissions by given array and ref_id.
if(isset($_POST['submit'])) $form
Class ilChatroomGUIHandler.
static checkServerConnection($use_cache=true)
static _lookupObjId($a_id)
special template class to simplify handling of ITX/PEAR
loadGeneralSettings()
Returns an array containing server settings from settingsTable.
getReadmePath()
Get the path to the README.txt file.
const CHATROOM_README_PATH
Create styles array
The data for the language used.
serversettings(ilPropertyFormGUI $form=null)
Prepares view form and displays it.
__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
saveSettings()
Saves settings fetched from $_POST.
createSettingTemplate(ilPropertyFormGUI $form)
redirect($a_gui_obj, $a_cmd="", $a_anchor="", $a_asynch=false)
Redirect to another command.
getFormAction( $a_gui_obj, $a_fallback_cmd="", $a_anchor="", $a_asynch=false, $xml_style=true)
Get form action url for gui class object.