ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
interface.Setting.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Administration
;
22
28
interface
Setting
29
{
30
// Get current module
31
public
function
getModule
(): string;
32
33
// Read current module
34
public
function
read
(): void;
35
36
// Get a setting
37
public
function
get
(
38
string
$a_keyword,
39
?
string
$a_default_value =
null
40
): ?
string
;
41
42
// Delete all settings of current module
43
public
function
deleteAll
(): void;
44
45
// Delete setting
46
public
function
delete
(
string
$a_keyword):
void
;
47
48
// Get all settings as array
49
public
function
getAll
(): array;
50
51
// Set a setting
52
public
function
set
(
string
$a_key,
string
$a_val):
void
;
53
54
// Lookup a setting
55
public
static
function
_lookupValue
(
56
string
$a_module,
57
string
$a_keyword
58
): ?string;
59
}
ILIAS\Administration\Setting\deleteAll
deleteAll()
ILIAS\Administration
Definition:
class.AdminGUIRequest.php:21
ILIAS\Administration\Setting\getModule
getModule()
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\Administration\Setting\read
read()
ILIAS\Administration\Setting
Setting interface.
Definition:
interface.Setting.php:28
ILIAS\Administration\Setting\getAll
getAll()
ILIAS\Administration\Setting\_lookupValue
static _lookupValue(string $a_module, string $a_keyword)
components
ILIAS
Administration
interfaces
interface.Setting.php
Generated on Wed Apr 2 2025 23:01:47 for ILIAS by
1.8.13 (using
Doxyfile
)