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
AbstractIdentification.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\GlobalScreen\Identification
;
22
23
use
ILIAS\GlobalScreen\Identification\Serializer\SerializerInterface
;
24
use
ILIAS\GlobalScreen\Provider\Provider
;
25
use
LogicException
;
26
31
abstract
class
AbstractIdentification
implements
IdentificationInterface
32
{
36
protected
$serializer
;
40
protected
$provider_presentation_name
;
44
protected
$internal_identifier
=
''
;
48
protected
$classname
=
''
;
49
57
public
function
__construct
(
string
$internal_identifier
,
string
$classname
,
SerializerInterface
$serializer
,
string
$provider_presentation_name
)
58
{
59
$this->provider_presentation_name =
$provider_presentation_name
;
60
$this->serializer =
$serializer
;
61
$this->internal_identifier =
$internal_identifier
;
62
$this->classname =
$classname
;
63
}
64
68
public
function
serialize
()
69
{
70
return
$this->serializer->serialize($this);
71
}
72
76
public
function
unserialize
($serialized)
77
{
78
throw
new
LogicException
(
"Please use the identification factory to unserialize"
);
79
}
80
84
public
function
getClassName
() : string
85
{
86
return
$this->classname
;
87
}
88
92
public
function
getInternalIdentifier
() : string
93
{
94
return
$this->internal_identifier
;
95
}
96
100
public
function
getProviderNameForPresentation
() :
string
101
{
102
global
$DIC
;
106
$provider =
new
$this->classname($DIC);
107
108
return
$provider->getProviderNameForPresentation();
109
}
110
114
public
function
__serialize
() : array
115
{
116
return
[
'data'
=> $this->
serialize
()];
117
}
118
119
public
function
__unserialize
(array
$data
) : void
120
{
121
$this->
unserialize
($data[
'data'
]);
122
}
123
}
LogicException
$data
$data
Definition:
storeScorm.php:23
ILIAS\GlobalScreen\Identification\AbstractIdentification\getClassName
getClassName()
Definition:
AbstractIdentification.php:84
ILIAS\GlobalScreen\Identification\AbstractIdentification\$serializer
$serializer
Definition:
AbstractIdentification.php:36
ILIAS\GlobalScreen\Identification\IdentificationInterface
Interface IdentificationInterface.
Definition:
IdentificationInterface.php:29
ILIAS\GlobalScreen\Identification\AbstractIdentification\unserialize
unserialize($serialized)
Definition:
AbstractIdentification.php:76
ILIAS\GlobalScreen\Identification\AbstractIdentification\getInternalIdentifier
getInternalIdentifier()
Definition:
AbstractIdentification.php:92
ILIAS\GlobalScreen\Identification\AbstractIdentification\$classname
$classname
Definition:
AbstractIdentification.php:48
ILIAS\GlobalScreen\Identification\AbstractIdentification\$internal_identifier
$internal_identifier
Definition:
AbstractIdentification.php:44
ILIAS\GlobalScreen\Identification\AbstractIdentification
Definition:
AbstractIdentification.php:31
ILIAS\GlobalScreen\Identification\AbstractIdentification\__unserialize
__unserialize(array $data)
Definition:
AbstractIdentification.php:119
$DIC
global $DIC
Definition:
goto.php:24
ILIAS\GlobalScreen\Identification\AbstractIdentification\$provider_presentation_name
$provider_presentation_name
Definition:
AbstractIdentification.php:40
ILIAS\GlobalScreen\Identification\Serializer\SerializerInterface
Interface SerializerInterface.
Definition:
SerializerInterface.php:31
ILIAS\GlobalScreen\Identification\IdentificationInterface\getProviderNameForPresentation
getProviderNameForPresentation()
SerializerInterface
ILIAS\GlobalScreen\Identification\AbstractIdentification\__construct
__construct(string $internal_identifier, string $classname, SerializerInterface $serializer, string $provider_presentation_name)
CoreIdentification constructor.
Definition:
AbstractIdentification.php:57
ILIAS\GlobalScreen\Identification\AbstractIdentification\__serialize
__serialize()
Definition:
AbstractIdentification.php:114
ILIAS\GlobalScreen\Identification\AbstractIdentification\serialize
serialize()
Definition:
AbstractIdentification.php:68
Provider
ILIAS\GlobalScreen\Identification
Definition:
AbstractIdentification.php:21
src
GlobalScreen
Identification
AbstractIdentification.php
Generated on Thu Apr 3 2025 21:01:35 for ILIAS by
1.8.13 (using
Doxyfile
)