ILIAS
trunk Revision v11.0_alpha-1713-gd8962da2f67
◀ 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
StorageImpl.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\ContentPage\GlobalSettings
;
22
23
use
ilSetting
;
24
30
class
StorageImpl
implements
Storage
31
{
32
private
const
P_READING_TIME_STATUS
=
'reading_time_status'
;
33
34
public
function
__construct
(
private
readonly
ilSetting
$globalSettings)
35
{
36
}
37
38
public
function
getSettings
():
Settings
39
{
40
$settings =
new
Settings
();
41
42
if
($this->globalSettings->get(self::P_READING_TIME_STATUS,
'0'
)) {
43
$settings = $settings->withEnabledReadingTime();
44
}
else
{
45
$settings = $settings->withDisabledReadingTime();
46
}
47
48
return
$settings;
49
}
50
51
public
function
store
(
Settings
$settings): void
52
{
53
$this->globalSettings->set(self::P_READING_TIME_STATUS, ((
string
) (
int
) $settings->
isReadingTimeEnabled
()));
54
}
55
}
ILIAS\ContentPage\GlobalSettings\StorageImpl\getSettings
getSettings()
Definition:
StorageImpl.php:38
ILIAS\ContentPage\GlobalSettings\StorageImpl\__construct
__construct(private readonly ilSetting $globalSettings)
Definition:
StorageImpl.php:34
ILIAS\ContentPage\GlobalSettings\StorageImpl\P_READING_TIME_STATUS
const P_READING_TIME_STATUS
Definition:
StorageImpl.php:32
ILIAS\ContentPage\GlobalSettings\Storage
Definition:
Storage.php:28
ILIAS\ContentPage\GlobalSettings\Settings\isReadingTimeEnabled
isReadingTimeEnabled()
Definition:
Settings.php:32
ILIAS\ContentPage\GlobalSettings\StorageImpl
Definition:
StorageImpl.php:30
ILIAS\ContentPage\GlobalSettings
Definition:
Settings.php:21
ILIAS\ContentPage\GlobalSettings\StorageImpl\store
store(Settings $settings)
Definition:
StorageImpl.php:51
SettingsInterface
ilSetting
components
ILIAS
ContentPage
classes
GlobalSettings
StorageImpl.php
Generated on Fri Apr 4 2025 23:02:50 for ILIAS by
1.8.13 (using
Doxyfile
)