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
•
All
Data Structures
Namespaces
Files
Functions
Variables
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
{
32
private
$serialized_string
;
33
38
public
function
__construct
(
string
$serialized_string
= null)
39
{
40
$this->serialized_string =
$serialized_string
;
41
}
42
46
public
function
serialize
() : string
47
{
48
return
$this->serialized_string
;
49
}
50
54
public
function
unserialize
($serialized) : void
55
{
56
}
57
61
public
function
getClassName
() : string
62
{
63
return
"Lost"
;
64
}
65
69
public
function
getInternalIdentifier
() : string
70
{
71
return
"Lost"
;
72
}
73
77
public
function
getProviderNameForPresentation
() : string
78
{
79
return
"Lost"
;
80
}
81
85
public
function
__serialize
() : array
86
{
87
return
[
'data'
=> $this->
serialize
()];
88
}
89
90
public
function
__unserialize
(array
$data
) : void
91
{
92
$this->
unserialize
($data[
'data'
]);
93
}
94
}
ILIAS\GlobalScreen\Identification\LostIdentification\serialize
serialize()
Definition:
LostIdentification.php:46
ILIAS\GlobalScreen\Identification\LostIdentification
Class LostIdentification.
Definition:
LostIdentification.php:27
ILIAS\GlobalScreen\Identification\LostIdentification\getClassName
getClassName()
Definition:
LostIdentification.php:61
$data
$data
Definition:
storeScorm.php:23
ILIAS\GlobalScreen\Identification\LostIdentification\unserialize
unserialize($serialized)
Definition:
LostIdentification.php:54
ILIAS\GlobalScreen\Identification\LostIdentification\__unserialize
__unserialize(array $data)
Definition:
LostIdentification.php:90
ILIAS\GlobalScreen\Identification\IdentificationInterface
Interface IdentificationInterface.
Definition:
IdentificationInterface.php:29
ILIAS\GlobalScreen\Identification\LostIdentification\getInternalIdentifier
getInternalIdentifier()
Definition:
LostIdentification.php:69
ILIAS\GlobalScreen\Identification\LostIdentification\$serialized_string
$serialized_string
Definition:
LostIdentification.php:32
ILIAS\GlobalScreen\Identification\LostIdentification\getProviderNameForPresentation
getProviderNameForPresentation()
Definition:
LostIdentification.php:77
ILIAS\GlobalScreen\Identification\LostIdentification\__serialize
__serialize()
Definition:
LostIdentification.php:85
ILIAS\GlobalScreen\Identification\LostIdentification\__construct
__construct(string $serialized_string=null)
NullIdentification constructor.
Definition:
LostIdentification.php:38
ILIAS\GlobalScreen\Identification
Definition:
AbstractIdentification.php:21
src
GlobalScreen
Identification
LostIdentification.php
Generated on Tue Apr 8 2025 21:02:11 for ILIAS by
1.8.13 (using
Doxyfile
)