ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
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\LTI\ToolProvider\$settings
array $settings
Setting values (LTI parameters, custom parameters and local parameters).
Definition:
System.php:200
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:16
ILIAS\ContentPage\GlobalSettings\StorageImpl
Definition:
StorageImpl.php:30
ILIAS\ContentPage\GlobalSettings\Settings
Definition:
Settings.php:12
ILIAS\ContentPage\GlobalSettings
Definition:
Settings.php:5
ILIAS\ContentPage\GlobalSettings\StorageImpl\store
store(Settings $settings)
Definition:
StorageImpl.php:51
ilSetting
Modules
ContentPage
classes
GlobalSettings
StorageImpl.php
Generated on Wed Sep 10 2025 14:10:43 for ILIAS by
1.8.13 (using
Doxyfile
)