ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
q
r
s
t
u
v
w
x
z
+
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
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilHttpSetupConfig.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 2019 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
5
use
ILIAS\Setup
;
6
7
class
ilHttpSetupConfig
implements
Setup\Config
8
{
12
protected
$http_path
;
13
17
protected
$autodetection_enabled
;
18
22
protected
$header_name
;
23
27
protected
$header_value
;
28
32
protected
$proxy_enabled
;
33
37
protected
$proxy_host
;
38
42
protected
$proxy_port
;
43
44
45
public
function
__construct
(
46
string
$http_path
,
47
bool
$autodetection_enabled
,
48
?
string
$header_name
,
49
?
string
$header_value
,
50
bool
$proxy_enabled
,
51
?
string
$proxy_host
,
52
?
string
$proxy_port
53
) {
54
if
($autodetection_enabled && (!$header_name || !$header_value)) {
55
throw
new \InvalidArgumentException(
56
"Expected header name and value for https autodetection if that feature is enabled."
57
);
58
}
59
if
($proxy_enabled && (!$proxy_host || !$proxy_port)) {
60
throw
new \InvalidArgumentException(
61
"Expected setting for proxy host and port if proxy is enabled."
62
);
63
}
64
$this->http_path =
$http_path
;
65
$this->autodetection_enabled =
$autodetection_enabled
;
66
$this->header_name =
$header_name
;
67
$this->header_value =
$header_value
;
68
$this->proxy_enabled =
$proxy_enabled
;
69
$this->proxy_host =
$proxy_host
;
70
$this->proxy_port =
$proxy_port
;
71
}
72
73
public
function
getHttpPath
() : string
74
{
75
return
$this->http_path
;
76
}
77
78
public
function
isAutodetectionEnabled
() : bool
79
{
80
return
$this->autodetection_enabled
;
81
}
82
83
public
function
getHeaderName
() : ?string
84
{
85
return
$this->header_name
;
86
}
87
88
public
function
getHeaderValue
() : ?string
89
{
90
return
$this->header_value
;
91
}
92
93
public
function
isProxyEnabled
() : bool
94
{
95
return
$this->proxy_enabled
;
96
}
97
98
public
function
getProxyHost
() : ?string
99
{
100
return
$this->proxy_host
;
101
}
102
103
public
function
getProxyPort
() : ?string
104
{
105
return
$this->proxy_port
;
106
}
107
}
ilHttpSetupConfig
Definition:
class.ilHttpSetupConfig.php:7
ilHttpSetupConfig\$proxy_port
$proxy_port
Definition:
class.ilHttpSetupConfig.php:42
ilHttpSetupConfig\$proxy_enabled
$proxy_enabled
Definition:
class.ilHttpSetupConfig.php:32
ilHttpSetupConfig\__construct
__construct(string $http_path, bool $autodetection_enabled, ?string $header_name, ?string $header_value, bool $proxy_enabled, ?string $proxy_host, ?string $proxy_port)
Definition:
class.ilHttpSetupConfig.php:45
ilHttpSetupConfig\getProxyHost
getProxyHost()
Definition:
class.ilHttpSetupConfig.php:98
ilHttpSetupConfig\$header_value
$header_value
Definition:
class.ilHttpSetupConfig.php:27
ilHttpSetupConfig\$header_name
$header_name
Definition:
class.ilHttpSetupConfig.php:22
ilHttpSetupConfig\$http_path
$http_path
Definition:
class.ilHttpSetupConfig.php:12
ilHttpSetupConfig\getProxyPort
getProxyPort()
Definition:
class.ilHttpSetupConfig.php:103
ilHttpSetupConfig\getHeaderValue
getHeaderValue()
Definition:
class.ilHttpSetupConfig.php:88
ilHttpSetupConfig\getHttpPath
getHttpPath()
Definition:
class.ilHttpSetupConfig.php:73
ilHttpSetupConfig\isAutodetectionEnabled
isAutodetectionEnabled()
Definition:
class.ilHttpSetupConfig.php:78
ilHttpSetupConfig\getHeaderName
getHeaderName()
Definition:
class.ilHttpSetupConfig.php:83
ILIAS\Setup
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
AdminInteraction.php:5
ilHttpSetupConfig\isProxyEnabled
isProxyEnabled()
Definition:
class.ilHttpSetupConfig.php:93
ilHttpSetupConfig\$autodetection_enabled
$autodetection_enabled
Definition:
class.ilHttpSetupConfig.php:17
ilHttpSetupConfig\$proxy_host
$proxy_host
Definition:
class.ilHttpSetupConfig.php:37
Services
Http
classes
Setup
class.ilHttpSetupConfig.php
Generated on Wed Apr 2 2025 21:01:29 for ILIAS by
1.8.13 (using
Doxyfile
)