ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
ilChatroomSetupConfig Class Reference
+ Inheritance diagram for ilChatroomSetupConfig:
+ Collaboration diagram for ilChatroomSetupConfig:

Public Member Functions

 __construct (string $address, int $port, string $sub_directory, string $protocol, string $cert, string $key, string $dhparam, string $log, string $log_level, string $error_log, bool $ilias_proxy, string $ilias_url, bool $client_proxy, string $client_url, bool $deletion_mode, string $deletion_unit, int $deletion_value, string $deletion_time)
 
 getAddress ()
 
 getPort ()
 
 getSubDirectory ()
 
 getProtocol ()
 
 getCert ()
 
 getKey ()
 
 getDhparam ()
 
 getLog ()
 
 getLogLevel ()
 
 getErrorLog ()
 
 hasIliasProxy ()
 
 getIliasUrl ()
 
 hasClientProxy ()
 
 getClientUrl ()
 
 hasDeletionMode ()
 
 getDeletionUnit ()
 
 getDeletionValue ()
 
 getDeletionTime ()
 

Protected Attributes

 $address
 
 $port
 
 $sub_directory
 
 $protocol
 
 $cert
 
 $key
 
 $dhparam
 
 $log
 
 $log_level
 
 $error_log
 
 $ilias_proxy
 
 $ilias_url
 
 $client_proxy
 
 $client_url
 
 $deletion_mode
 
 $deletion_unit
 
 $deletion_value
 
 $deletion_time
 

Detailed Description

Definition at line 7 of file class.ilChatroomSetupConfig.php.

Constructor & Destructor Documentation

◆ __construct()

ilChatroomSetupConfig::__construct ( string  $address,
int  $port,
string  $sub_directory,
string  $protocol,
string  $cert,
string  $key,
string  $dhparam,
string  $log,
string  $log_level,
string  $error_log,
bool  $ilias_proxy,
string  $ilias_url,
bool  $client_proxy,
string  $client_url,
bool  $deletion_mode,
string  $deletion_unit,
int  $deletion_value,
string  $deletion_time 
)

Definition at line 99 of file class.ilChatroomSetupConfig.php.

References $address, $cert, $client_proxy, $client_url, $deletion_mode, $deletion_time, $deletion_unit, $deletion_value, $dhparam, $error_log, $ilias_proxy, $ilias_url, $key, $log, $log_level, $port, $protocol, and $sub_directory.

118  {
119  $this->address = $address;
120  $this->port = $port;
121  $this->sub_directory = $sub_directory;
122  $this->protocol = $protocol;
123  $this->cert = $cert;
124  $this->key = $key;
125  $this->dhparam = $dhparam;
126  $this->log = $log;
127  $this->log_level = $log_level;
128  $this->error_log = $error_log;
129  $this->ilias_proxy = $ilias_proxy;
130  $this->ilias_url = $ilias_url;
131  $this->client_proxy = $client_proxy;
132  $this->client_url = $client_url;
133  $this->deletion_mode = $deletion_mode;
134  $this->deletion_unit = $deletion_unit;
135  $this->deletion_value = $deletion_value;
136  $this->deletion_time = $deletion_time;
137  }

Member Function Documentation

◆ getAddress()

ilChatroomSetupConfig::getAddress ( )
Returns
string

Definition at line 142 of file class.ilChatroomSetupConfig.php.

References $address.

142  : string
143  {
144  return $this->address;
145  }

◆ getCert()

ilChatroomSetupConfig::getCert ( )
Returns
string

Definition at line 174 of file class.ilChatroomSetupConfig.php.

References $cert.

174  : string
175  {
176  return $this->cert;
177  }

◆ getClientUrl()

ilChatroomSetupConfig::getClientUrl ( )
Returns
string

Definition at line 246 of file class.ilChatroomSetupConfig.php.

References $client_url.

246  : string
247  {
248  return $this->client_url;
249  }

◆ getDeletionTime()

ilChatroomSetupConfig::getDeletionTime ( )
Returns
string

Definition at line 278 of file class.ilChatroomSetupConfig.php.

References $deletion_time.

278  : string
279  {
280  return $this->deletion_time;
281  }

◆ getDeletionUnit()

ilChatroomSetupConfig::getDeletionUnit ( )
Returns
string

Definition at line 262 of file class.ilChatroomSetupConfig.php.

References $deletion_unit.

262  : string
263  {
264  return $this->deletion_unit;
265  }

◆ getDeletionValue()

ilChatroomSetupConfig::getDeletionValue ( )
Returns
int

Definition at line 270 of file class.ilChatroomSetupConfig.php.

References $deletion_value.

270  : int
271  {
272  return $this->deletion_value;
273  }

◆ getDhparam()

ilChatroomSetupConfig::getDhparam ( )
Returns
string

Definition at line 190 of file class.ilChatroomSetupConfig.php.

References $dhparam.

190  : string
191  {
192  return $this->dhparam;
193  }

◆ getErrorLog()

ilChatroomSetupConfig::getErrorLog ( )
Returns
string

Definition at line 214 of file class.ilChatroomSetupConfig.php.

References $error_log.

214  : string
215  {
216  return $this->error_log;
217  }

◆ getIliasUrl()

ilChatroomSetupConfig::getIliasUrl ( )
Returns
string

Definition at line 230 of file class.ilChatroomSetupConfig.php.

References $ilias_url.

230  : string
231  {
232  return $this->ilias_url;
233  }

◆ getKey()

ilChatroomSetupConfig::getKey ( )
Returns
string

Definition at line 182 of file class.ilChatroomSetupConfig.php.

References $key.

182  : string
183  {
184  return $this->key;
185  }

◆ getLog()

ilChatroomSetupConfig::getLog ( )
Returns
string

Definition at line 198 of file class.ilChatroomSetupConfig.php.

References $log.

198  : string
199  {
200  return $this->log;
201  }

◆ getLogLevel()

ilChatroomSetupConfig::getLogLevel ( )
Returns
string

Definition at line 206 of file class.ilChatroomSetupConfig.php.

References $log_level.

206  : string
207  {
208  return $this->log_level;
209  }

◆ getPort()

ilChatroomSetupConfig::getPort ( )
Returns
int

Definition at line 150 of file class.ilChatroomSetupConfig.php.

References $port.

150  : int
151  {
152  return $this->port;
153  }

◆ getProtocol()

ilChatroomSetupConfig::getProtocol ( )
Returns
string

Definition at line 166 of file class.ilChatroomSetupConfig.php.

References $protocol.

166  : string
167  {
168  return $this->protocol;
169  }

◆ getSubDirectory()

ilChatroomSetupConfig::getSubDirectory ( )
Returns
string

Definition at line 158 of file class.ilChatroomSetupConfig.php.

References $sub_directory.

158  : string
159  {
160  return $this->sub_directory;
161  }

◆ hasClientProxy()

ilChatroomSetupConfig::hasClientProxy ( )
Returns
bool

Definition at line 238 of file class.ilChatroomSetupConfig.php.

References $client_proxy.

238  : bool
239  {
240  return $this->client_proxy;
241  }

◆ hasDeletionMode()

ilChatroomSetupConfig::hasDeletionMode ( )
Returns
bool

Definition at line 254 of file class.ilChatroomSetupConfig.php.

References $deletion_mode.

254  : bool
255  {
256  return $this->deletion_mode;
257  }

◆ hasIliasProxy()

ilChatroomSetupConfig::hasIliasProxy ( )
Returns
bool

Definition at line 222 of file class.ilChatroomSetupConfig.php.

References $ilias_proxy.

222  : bool
223  {
224  return $this->ilias_proxy;
225  }

Field Documentation

◆ $address

ilChatroomSetupConfig::$address
protected

Definition at line 12 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getAddress().

◆ $cert

ilChatroomSetupConfig::$cert
protected

Definition at line 32 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getCert().

◆ $client_proxy

ilChatroomSetupConfig::$client_proxy
protected

Definition at line 72 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and hasClientProxy().

◆ $client_url

ilChatroomSetupConfig::$client_url
protected

Definition at line 77 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getClientUrl().

◆ $deletion_mode

ilChatroomSetupConfig::$deletion_mode
protected

Definition at line 82 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and hasDeletionMode().

◆ $deletion_time

ilChatroomSetupConfig::$deletion_time
protected

Definition at line 97 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getDeletionTime().

◆ $deletion_unit

ilChatroomSetupConfig::$deletion_unit
protected

Definition at line 87 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getDeletionUnit().

◆ $deletion_value

ilChatroomSetupConfig::$deletion_value
protected

Definition at line 92 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getDeletionValue().

◆ $dhparam

ilChatroomSetupConfig::$dhparam
protected

Definition at line 42 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getDhparam().

◆ $error_log

ilChatroomSetupConfig::$error_log
protected

Definition at line 57 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getErrorLog().

◆ $ilias_proxy

ilChatroomSetupConfig::$ilias_proxy
protected

Definition at line 62 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and hasIliasProxy().

◆ $ilias_url

ilChatroomSetupConfig::$ilias_url
protected

Definition at line 67 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getIliasUrl().

◆ $key

ilChatroomSetupConfig::$key
protected

Definition at line 37 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getKey().

◆ $log

ilChatroomSetupConfig::$log
protected

Definition at line 47 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getLog().

◆ $log_level

ilChatroomSetupConfig::$log_level
protected

Definition at line 52 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getLogLevel().

◆ $port

ilChatroomSetupConfig::$port
protected

Definition at line 17 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getPort().

◆ $protocol

ilChatroomSetupConfig::$protocol
protected

Definition at line 27 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getProtocol().

◆ $sub_directory

ilChatroomSetupConfig::$sub_directory
protected

Definition at line 22 of file class.ilChatroomSetupConfig.php.

Referenced by __construct(), and getSubDirectory().


The documentation for this class was generated from the following file: