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
▼
ILIAS
Test List
Todo List
Deprecated List
►
Modules
►
Namespaces
►
Data Structures
▼
Files
►
File List
►
Globals
►
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
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 Sat Apr 5 2025 21:01:44 for ILIAS by
1.8.13 (using
Doxyfile
)