89 public function getURL($action, $scope)
92 '/backend/' . $action .
'/' . $this->
getInstance() .
'/' . $scope;
129 $this->smilies_enabled = $a_bool;
133 return (
bool) $this->smilies_enabled;
139 $query =
'SELECT * FROM chatroom_admconfig';
140 $rset = $ilDB->query(
$query);
141 $row = $ilDB->fetchAssoc($rset);
143 $client_settings = json_decode(
$row[
'client_settings']);
144 $server_settings = json_decode(
$row[
'server_settings']);
147 $settings->setPort($server_settings->port);
148 $settings->setProtocol($server_settings->protocol);
149 $settings->setInstance($client_settings->name);
150 $settings->setDomain($server_settings->address);
151 $settings->setSmiliesEnabled($client_settings->enable_smilies);
setInstance($instance)
Sets $this->instance using given $instance.
setDomain($domain)
Sets $this->domain using given $domain.
getDomain()
Returns $this->domain.
getInstance()
Returns $this->instance.
getURL($action, $scope)
Creates URL by calling $this->getBaseURL and using given $action and $scope and returns it...
getBaseURL()
Returns base URL.
Class ilChatroomServerSettings.
setPort($port)
Sets $this->port using given $port.
setProtocol($protocol)
Sets $this->protocol using given $protocol.
getProtocol()
Returns $this->protocol.
setSmiliesEnabled($a_bool)
getPort()
Returns $this->port.