ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
ClientSettings.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\GlobalScreen\Client
;
4
5
use
JsonSerializable
;
6
12
class
ClientSettings
implements
JsonSerializable
13
{
14
18
private
$hashing
=
true
;
22
private
$logging
=
false
;
23
24
30
public
function
setHashing
(
bool
$hashing
) :
ClientSettings
31
{
32
$this->hashing =
$hashing
;
33
34
return
$this;
35
}
36
37
43
public
function
setLogging
(
bool
$logging
) :
ClientSettings
44
{
45
$this->logging =
$logging
;
46
47
return
$this;
48
}
49
50
54
public
function
jsonSerialize
()
55
{
56
return
[
57
'hashing'
=>
$this->hashing
,
58
'logging'
=>
$this->logging
,
59
];
60
}
61
}
ILIAS\GlobalScreen\Client\ClientSettings\jsonSerialize
jsonSerialize()
Definition:
ClientSettings.php:54
ILIAS\GlobalScreen\Client\ClientSettings\$logging
$logging
Definition:
ClientSettings.php:22
ILIAS\GlobalScreen\Client
Entry Point for Async calls from the Notification Center.
Definition:
gs_content.php:1
ILIAS\GlobalScreen\Client\ClientSettings
Definition:
ClientSettings.php:12
ILIAS\GlobalScreen\Client\ClientSettings\$hashing
$hashing
Definition:
ClientSettings.php:18
JsonSerializable
ILIAS\GlobalScreen\Client\ClientSettings\setLogging
setLogging(bool $logging)
Definition:
ClientSettings.php:43
ILIAS\GlobalScreen\Client\ClientSettings\setHashing
setHashing(bool $hashing)
Definition:
ClientSettings.php:30
src
GlobalScreen
Client
ClientSettings.php
Generated on Mon Apr 7 2025 20:01:33 for ILIAS by
1.8.13 (using
Doxyfile
)