ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
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

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
 

Detailed Description

Definition at line 23 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 44 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.

63  {
64  $this->address = $address;
65  $this->port = $port;
66  $this->sub_directory = $sub_directory;
67  $this->protocol = $protocol;
68  $this->cert = $cert;
69  $this->key = $key;
70  $this->dhparam = $dhparam;
71  $this->log = $log;
72  $this->log_level = $log_level;
73  $this->error_log = $error_log;
74  $this->ilias_proxy = $ilias_proxy;
75  $this->ilias_url = $ilias_url;
76  $this->client_proxy = $client_proxy;
77  $this->client_url = $client_url;
78  $this->deletion_mode = $deletion_mode;
79  $this->deletion_unit = $deletion_unit;
80  $this->deletion_value = $deletion_value;
81  $this->deletion_time = $deletion_time;
82  }

Member Function Documentation

◆ getAddress()

ilChatroomSetupConfig::getAddress ( )

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

References $address.

84  : string
85  {
86  return $this->address;
87  }

◆ getCert()

ilChatroomSetupConfig::getCert ( )

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

References $cert.

104  : string
105  {
106  return $this->cert;
107  }

◆ getClientUrl()

ilChatroomSetupConfig::getClientUrl ( )

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

References $client_url.

149  : string
150  {
151  return $this->client_url;
152  }

◆ getDeletionTime()

ilChatroomSetupConfig::getDeletionTime ( )

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

References $deletion_time.

169  : string
170  {
171  return $this->deletion_time;
172  }

◆ getDeletionUnit()

ilChatroomSetupConfig::getDeletionUnit ( )

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

References $deletion_unit.

159  : string
160  {
161  return $this->deletion_unit;
162  }

◆ getDeletionValue()

ilChatroomSetupConfig::getDeletionValue ( )

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

References $deletion_value.

164  : int
165  {
166  return $this->deletion_value;
167  }

◆ getDhparam()

ilChatroomSetupConfig::getDhparam ( )

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

References $dhparam.

114  : string
115  {
116  return $this->dhparam;
117  }

◆ getErrorLog()

ilChatroomSetupConfig::getErrorLog ( )

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

References $error_log.

129  : string
130  {
131  return $this->error_log;
132  }

◆ getIliasUrl()

ilChatroomSetupConfig::getIliasUrl ( )

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

References $ilias_url.

139  : string
140  {
141  return $this->ilias_url;
142  }

◆ getKey()

ilChatroomSetupConfig::getKey ( )

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

References $key.

109  : string
110  {
111  return $this->key;
112  }

◆ getLog()

ilChatroomSetupConfig::getLog ( )

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

References $log.

119  : string
120  {
121  return $this->log;
122  }

◆ getLogLevel()

ilChatroomSetupConfig::getLogLevel ( )

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

References $log_level.

124  : string
125  {
126  return $this->log_level;
127  }

◆ getPort()

ilChatroomSetupConfig::getPort ( )

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

References $port.

89  : int
90  {
91  return $this->port;
92  }

◆ getProtocol()

ilChatroomSetupConfig::getProtocol ( )

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

References $protocol.

99  : string
100  {
101  return $this->protocol;
102  }

◆ getSubDirectory()

ilChatroomSetupConfig::getSubDirectory ( )

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

References $sub_directory.

94  : string
95  {
96  return $this->sub_directory;
97  }

◆ hasClientProxy()

ilChatroomSetupConfig::hasClientProxy ( )

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

References $client_proxy.

144  : bool
145  {
146  return $this->client_proxy;
147  }

◆ hasDeletionMode()

ilChatroomSetupConfig::hasDeletionMode ( )

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

References $deletion_mode.

154  : bool
155  {
156  return $this->deletion_mode;
157  }

◆ hasIliasProxy()

ilChatroomSetupConfig::hasIliasProxy ( )

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

References $ilias_proxy.

134  : bool
135  {
136  return $this->ilias_proxy;
137  }

Field Documentation

◆ $address

string ilChatroomSetupConfig::$address
protected

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

Referenced by __construct(), and getAddress().

◆ $cert

string ilChatroomSetupConfig::$cert
protected

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

Referenced by __construct(), and getCert().

◆ $client_proxy

bool ilChatroomSetupConfig::$client_proxy
protected

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

Referenced by __construct(), and hasClientProxy().

◆ $client_url

string ilChatroomSetupConfig::$client_url
protected

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

Referenced by __construct(), and getClientUrl().

◆ $deletion_mode

bool ilChatroomSetupConfig::$deletion_mode
protected

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

Referenced by __construct(), and hasDeletionMode().

◆ $deletion_time

string ilChatroomSetupConfig::$deletion_time
protected

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

Referenced by __construct(), and getDeletionTime().

◆ $deletion_unit

string ilChatroomSetupConfig::$deletion_unit
protected

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

Referenced by __construct(), and getDeletionUnit().

◆ $deletion_value

int ilChatroomSetupConfig::$deletion_value
protected

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

Referenced by __construct(), and getDeletionValue().

◆ $dhparam

string ilChatroomSetupConfig::$dhparam
protected

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

Referenced by __construct(), and getDhparam().

◆ $error_log

string ilChatroomSetupConfig::$error_log
protected

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

Referenced by __construct(), and getErrorLog().

◆ $ilias_proxy

bool ilChatroomSetupConfig::$ilias_proxy
protected

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

Referenced by __construct(), and hasIliasProxy().

◆ $ilias_url

string ilChatroomSetupConfig::$ilias_url
protected

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

Referenced by __construct(), and getIliasUrl().

◆ $key

string ilChatroomSetupConfig::$key
protected

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

Referenced by __construct(), and getKey().

◆ $log

string ilChatroomSetupConfig::$log
protected

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

Referenced by __construct(), and getLog().

◆ $log_level

string ilChatroomSetupConfig::$log_level
protected

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

Referenced by __construct(), and getLogLevel().

◆ $port

int ilChatroomSetupConfig::$port
protected

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

Referenced by __construct(), and getPort().

◆ $protocol

string ilChatroomSetupConfig::$protocol
protected

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

Referenced by __construct(), and getProtocol().

◆ $sub_directory

string ilChatroomSetupConfig::$sub_directory
protected

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

Referenced by __construct(), and getSubDirectory().


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