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.ilSamlSettings.php
Go to the documentation of this file.
1
<?php declare(strict_types=1);
2
/* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3
8
class
ilSamlSettings
9
{
11
protected
static
$instance
= null;
13
protected
$settings
;
14
18
protected
function
__construct
()
19
{
20
$this->
settings
=
new
ilSetting
(
'auth_saml'
);
21
}
22
26
public
static
function
getInstance
() : self
27
{
28
if
(null === self::$instance) {
29
self::$instance =
new
self
();
30
}
31
32
return
self::$instance;
33
}
34
38
public
function
isDisplayedOnLoginPage
() : bool
39
{
40
return
(
bool
) $this->
settings
->get(
'login_form'
, 0);
41
}
42
46
public
function
setLoginFormStatus
(
bool
$displayed_on_login_page) : void
47
{
48
$this->
settings
->set(
'login_form'
, (
int
) $displayed_on_login_page);
49
}
50
}
ilSamlSettings\$instance
static $instance
Definition:
class.ilSamlSettings.php:11
settings
settings()
Definition:
settings.php:2
ilSamlSettings
Class ilSamlSettings.
Definition:
class.ilSamlSettings.php:8
ilSamlSettings\setLoginFormStatus
setLoginFormStatus(bool $displayed_on_login_page)
Definition:
class.ilSamlSettings.php:46
ilSamlSettings\__construct
__construct()
ilSamlSettings constructor.
Definition:
class.ilSamlSettings.php:18
ilSamlSettings\$settings
$settings
Definition:
class.ilSamlSettings.php:13
ilSamlSettings\getInstance
static getInstance()
Definition:
class.ilSamlSettings.php:26
ilSetting
ilSamlSettings\isDisplayedOnLoginPage
isDisplayedOnLoginPage()
Definition:
class.ilSamlSettings.php:38
Services
Saml
classes
class.ilSamlSettings.php
Generated on Fri Apr 4 2025 21:01:39 for ILIAS by
1.8.13 (using
Doxyfile
)