ILIAS
trunk Revision v11.0_alpha-1769-g99a433fe2dc
◀ 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
LostIdentification.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\GlobalScreen\Identification
;
22
27
class
LostIdentification
implements
IdentificationInterface
28
{
33
public
function
__construct
(
private
?
string
$serialized_string =
null
)
34
{
35
}
36
40
public
function
serialize
(): string
41
{
42
return
$this->serialized_string;
43
}
44
48
public
function
unserialize
($serialized): void
49
{
50
}
51
55
public
function
getClassName
(): string
56
{
57
return
"Lost"
;
58
}
59
63
public
function
getInternalIdentifier
(): string
64
{
65
return
"Lost"
;
66
}
67
71
public
function
getProviderNameForPresentation
(): string
72
{
73
return
"Lost"
;
74
}
75
76
public
function
__serialize
(): array
77
{
78
return
[
'data'
=> $this->
serialize
()];
79
}
80
81
public
function
__unserialize
(array
$data
): void
82
{
83
$this->
unserialize
($data[
'data'
]);
84
}
85
}
ILIAS\GlobalScreen\Identification\LostIdentification\serialize
serialize()
Definition:
LostIdentification.php:40
$data
$data
Definition:
ltiregistration.php:29
ILIAS\GlobalScreen\Identification\LostIdentification
Class LostIdentification.
Definition:
LostIdentification.php:27
ILIAS\GlobalScreen\Identification\LostIdentification\getClassName
getClassName()
Definition:
LostIdentification.php:55
ILIAS\GlobalScreen\Identification\LostIdentification\unserialize
unserialize($serialized)
Definition:
LostIdentification.php:48
ILIAS\GlobalScreen\Identification\LostIdentification\__unserialize
__unserialize(array $data)
Definition:
LostIdentification.php:81
ILIAS\GlobalScreen\Identification\IdentificationInterface
Interface IdentificationInterface.
Definition:
IdentificationInterface.php:29
ILIAS\GlobalScreen\Identification\LostIdentification\getInternalIdentifier
getInternalIdentifier()
Definition:
LostIdentification.php:63
ILIAS\GlobalScreen\Identification\LostIdentification\getProviderNameForPresentation
getProviderNameForPresentation()
Definition:
LostIdentification.php:71
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\GlobalScreen\Identification\LostIdentification\__serialize
__serialize()
Definition:
LostIdentification.php:76
ILIAS\GlobalScreen\Identification
Definition:
AbstractIdentification.php:21
ILIAS\GlobalScreen\Identification\LostIdentification\__construct
__construct(private ?string $serialized_string=null)
NullIdentification constructor.
Definition:
LostIdentification.php:33
components
ILIAS
GlobalScreen
src
Identification
LostIdentification.php
Generated on Sun Apr 13 2025 23:03:00 for ILIAS by
1.8.13 (using
Doxyfile
)