1 <?php declare(strict_types=1);
25 return hash(
"sha256", self::class);
30 return "Store information about chatroom server to db";
41 new \ilIniFilesLoadedObjective(),
42 new \ilDatabaseInitializedObjective(),
43 new \ilFileSystemComponentDataDirectoryCreatedObjective(
"chatroom")
49 $db = $environment->
getResource(Setup\Environment::RESOURCE_DATABASE);
50 $common_config = $environment->getConfigFor(
"common");
51 $filesystem_config = $environment->getConfigFor(
"filesystem");
58 $GLOBALS[
"DIC"] =
new DI\Container();
63 $chatAdministration = current($chatAdministrations);
66 $settings = $chat_admin->loadGeneralSettings();
68 $settings[
'address'] = $this->config->getAddress();
69 $settings[
'port'] = $this->config->getPort();
70 $settings[
'sub_directory'] = $this->config->getSubDirectory();
71 $settings[
'protocol'] = $this->config->getProtocol();
72 $settings[
'cert'] = $this->config->getCert();
73 $settings[
'key'] = $this->config->getKey();
74 $settings[
'dhparam'] = $this->config->getDhparam();
75 $settings[
'log'] = $this->config->getLog();
76 $settings[
'log_level'] = $this->config->getLogLevel();
77 $settings[
'error_log'] = $this->config->getErrorLog();
78 $settings[
'ilias_proxy'] = (int) $this->config->hasIliasProxy();
79 $settings[
'ilias_url'] = $this->config->getIliasUrl();
80 $settings[
'client_proxy'] = (int) $this->config->hasClientProxy();
81 $settings[
'client_url'] = $this->config->getClientUrl();
82 $settings[
'deletion_mode'] = (int) $this->config->hasDeletionMode();
83 $settings[
'deletion_unit'] = $this->config->getDeletionUnit();
84 $settings[
'deletion_value'] = $this->config->getDeletionValue();
85 $settings[
'deletion_time'] = $this->config->getDeletionTime();
87 $chat_admin->saveGeneralSettings((
object) $settings);
89 if (!defined(
"CLIENT_DATA_DIR")) {
92 $filesystem_config->getDataDir() .
"/" . $common_config->getClientId()
97 $fileHandler->createServerConfigFile($settings);
109 return $this->config->getAddress() !=
'' && $this->config->getPort() != 0;
static _getObjectsByType($a_obj_type="", $a_owner="")
Get objects by type.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
isApplicable(Setup\Environment $environment)
achieve(Setup\Environment $environment)
Store information about https is enabled.
getPreconditions(Setup\Environment $environment)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
__construct(\ilChatroomSetupConfig $config)
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An environment holds resources to be used in the setup process.