ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilWebServicesSetupConfig.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
/* Copyright (c) 2020 Daniel Weise <daniel.weise@concepts-and-training.de> Extended GPL, see docs/LICENSE */
6
7
use
ILIAS\Setup
;
8
9
class
ilWebServicesSetupConfig
implements
Setup\Config
10
{
11
protected
bool
$soap_user_administration
;
12
protected
string
$soap_wsdl_path
;
13
protected
int
$soap_connect_timeout
;
14
protected
string
$rpc_server_host
;
15
protected
int
$rpc_server_port
;
16
20
protected
$soap_response_timeout
;
21
22
public
function
__construct
(
23
bool
$soap_user_administration,
24
string
$soap_wsdl_path,
25
int
$soap_connect_timeout,
26
int
$soap_response_timeout
,
27
string
$rpc_server_host,
28
int
$rpc_server_port
29
) {
30
$this->soap_user_administration =
$soap_user_administration
;
31
$this->soap_wsdl_path =
$soap_wsdl_path
;
32
$this->soap_connect_timeout =
$soap_connect_timeout
;
33
$this->rpc_server_host =
$rpc_server_host
;
34
$this->rpc_server_port =
$rpc_server_port
;
35
$this->soap_response_timeout =
$soap_response_timeout
;
36
}
37
38
public
function
isSOAPUserAdministration
(): bool
39
{
40
return
$this->soap_user_administration
;
41
}
42
43
public
function
getSOAPWsdlPath
(): string
44
{
45
return
$this->soap_wsdl_path
;
46
}
47
48
public
function
getSOAPConnectTimeout
():
int
49
{
50
return
$this->soap_connect_timeout
;
51
}
52
53
public
function
getRPCServerHost
(): string
54
{
55
return
$this->rpc_server_host
;
56
}
57
58
public
function
getRPCServerPort
():
int
59
{
60
return
$this->rpc_server_port
;
61
}
62
63
public
function
getSoapResponseTimeout
():
int
64
{
65
return
$this->soap_response_timeout
;
66
}
67
}
ilWebServicesSetupConfig\__construct
__construct(bool $soap_user_administration, string $soap_wsdl_path, int $soap_connect_timeout, int $soap_response_timeout, string $rpc_server_host, int $rpc_server_port)
Definition:
class.ilWebServicesSetupConfig.php:22
ilWebServicesSetupConfig\getSOAPWsdlPath
getSOAPWsdlPath()
Definition:
class.ilWebServicesSetupConfig.php:43
ilWebServicesSetupConfig\$soap_wsdl_path
string $soap_wsdl_path
Definition:
class.ilWebServicesSetupConfig.php:12
ilWebServicesSetupConfig\$rpc_server_port
int $rpc_server_port
Definition:
class.ilWebServicesSetupConfig.php:15
ilWebServicesSetupConfig\$soap_connect_timeout
int $soap_connect_timeout
Definition:
class.ilWebServicesSetupConfig.php:13
ilWebServicesSetupConfig\$rpc_server_host
string $rpc_server_host
Definition:
class.ilWebServicesSetupConfig.php:14
ilWebServicesSetupConfig\$soap_response_timeout
$soap_response_timeout
Definition:
class.ilWebServicesSetupConfig.php:20
ilWebServicesSetupConfig\getRPCServerHost
getRPCServerHost()
Definition:
class.ilWebServicesSetupConfig.php:53
ilWebServicesSetupConfig\getSOAPConnectTimeout
getSOAPConnectTimeout()
Definition:
class.ilWebServicesSetupConfig.php:48
ILIAS\Setup
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilMysqlMyIsamToInnoDbMigration.php:19
ilWebServicesSetupConfig\$soap_user_administration
bool $soap_user_administration
Definition:
class.ilWebServicesSetupConfig.php:11
ilWebServicesSetupConfig\getSoapResponseTimeout
getSoapResponseTimeout()
Definition:
class.ilWebServicesSetupConfig.php:63
ilWebServicesSetupConfig\isSOAPUserAdministration
isSOAPUserAdministration()
Definition:
class.ilWebServicesSetupConfig.php:38
ilWebServicesSetupConfig\getRPCServerPort
getRPCServerPort()
Definition:
class.ilWebServicesSetupConfig.php:58
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilWebServicesSetupConfig
Definition:
class.ilWebServicesSetupConfig.php:9
Services
WebServices
classes
Setup
class.ilWebServicesSetupConfig.php
Generated on Fri Apr 4 2025 22:03:06 for ILIAS by
1.8.13 (using
Doxyfile
)