ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
ClientSettings.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\GlobalScreen\Client
;
22
23
use
JsonSerializable
;
24
29
class
ClientSettings
implements
JsonSerializable
30
{
34
private
$hashing
=
true
;
38
private
$logging
=
false
;
39
40
public
function
setHashing
(
bool
$hashing
) : self
41
{
42
$this->hashing =
$hashing
;
43
44
return
$this;
45
}
46
47
public
function
setLogging
(
bool
$logging
) : self
48
{
49
$this->logging =
$logging
;
50
51
return
$this;
52
}
53
57
public
function
jsonSerialize
()
58
{
59
return
[
60
'hashing'
=>
$this->hashing
,
61
'logging'
=>
$this->logging
,
62
];
63
}
64
}
ILIAS\GlobalScreen\Client\ClientSettings\jsonSerialize
jsonSerialize()
Definition:
ClientSettings.php:57
ILIAS\GlobalScreen\Client\ClientSettings\$logging
$logging
Definition:
ClientSettings.php:38
ILIAS\GlobalScreen\Client
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
gs_content.php:1
ILIAS\GlobalScreen\Client\ClientSettings
Definition:
ClientSettings.php:29
ILIAS\GlobalScreen\Client\ClientSettings\$hashing
$hashing
Definition:
ClientSettings.php:34
JsonSerializable
ILIAS\GlobalScreen\Client\ClientSettings\setLogging
setLogging(bool $logging)
Definition:
ClientSettings.php:47
ILIAS\GlobalScreen\Client\ClientSettings\setHashing
setHashing(bool $hashing)
Definition:
ClientSettings.php:40
src
GlobalScreen
Client
ClientSettings.php
Generated on Mon Sep 1 2025 21:01:45 for ILIAS by
1.8.13 (using
Doxyfile
)