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.ilSamlSettings.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
25
class
ilSamlSettings
26
{
27
protected
static
?
self
$instance
= null;
28
protected
ilSetting
$settings
;
29
30
protected
function
__construct
()
31
{
32
$this->
settings
=
new
ilSetting
(
'auth_saml'
);
33
}
34
35
public
static
function
getInstance
(): self
36
{
37
if
(null === self::$instance) {
38
self::$instance =
new
self
();
39
}
40
41
return
self::$instance;
42
}
43
44
public
function
isDisplayedOnLoginPage
(): bool
45
{
46
return
(
bool
) $this->
settings
->get(
'login_form'
,
'0'
);
47
}
48
49
public
function
setLoginFormStatus
(
bool
$displayed_on_login_page): void
50
{
51
$this->
settings
->set(
'login_form'
, (
string
) ((
int
) $displayed_on_login_page));
52
}
53
}
ilSamlSettings\$instance
static self $instance
Definition:
class.ilSamlSettings.php:27
ilSamlSettings
Class ilSamlSettings.
Definition:
class.ilSamlSettings.php:25
ilSamlSettings\setLoginFormStatus
setLoginFormStatus(bool $displayed_on_login_page)
Definition:
class.ilSamlSettings.php:49
ilSamlSettings\__construct
__construct()
Definition:
class.ilSamlSettings.php:30
ILIAS\Repository\settings
settings()
Definition:
trait.GlobalDICDomainServices.php:91
ilSamlSettings\getInstance
static getInstance()
Definition:
class.ilSamlSettings.php:35
ilSamlSettings\$settings
ilSetting $settings
Definition:
class.ilSamlSettings.php:28
ilSetting
ilSamlSettings\isDisplayedOnLoginPage
isDisplayedOnLoginPage()
Definition:
class.ilSamlSettings.php:44
Services
Saml
classes
class.ilSamlSettings.php
Generated on Sun Apr 6 2025 22:02:45 for ILIAS by
1.8.13 (using
Doxyfile
)