ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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.shibServerData.php
Go to the documentation of this file.
1
<?php
2
require_once(
'./Services/AuthShibboleth/classes/Config/class.shibConfig.php'
);
3
9
class
shibServerData
extends
shibConfig
10
{
11
15
protected
static
$cache
= null;
16
17
21
protected
function
__construct
(
$data
)
22
{
23
$shibConfig =
shibConfig::getInstance
();
24
foreach
(array_keys(get_class_vars(
'shibConfig'
)) as $field) {
25
$str = $shibConfig->getValueByKey($field);
26
if
($str !== null) {
27
$this->{$field} =
$data
[$str];
28
}
29
}
30
}
31
32
36
public
static
function
getInstance
()
37
{
38
if
(!isset(self::$cache)) {
39
self::$cache =
new
self
(
$_SERVER
);
40
}
41
42
return
self::$cache;
43
}
44
}
$data
$data
Definition:
storeScorm.php:23
shibServerData
Class shibServerData.
Definition:
class.shibServerData.php:9
shibServerData\__construct
__construct($data)
Definition:
class.shibServerData.php:21
shibServerData\getInstance
static getInstance()
Definition:
class.shibServerData.php:36
shibServerData\$cache
static $cache
Definition:
class.shibServerData.php:15
shibConfig\getInstance
static getInstance()
Definition:
class.shibConfig.php:208
$_SERVER
$_SERVER['HTTP_HOST']
Definition:
raiseError.php:10
shibConfig
Class shibConfig.
Definition:
class.shibConfig.php:8
Services
AuthShibboleth
classes
ServerData
class.shibServerData.php
Generated on Thu Apr 3 2025 20:01:01 for ILIAS by
1.8.13 (using
Doxyfile
)