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
SerializerFactory.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
namespace
ILIAS\GlobalScreen\Identification\Serializer
;
21
22
use
InvalidArgumentException
;
23
28
class
SerializerFactory
29
{
33
private
static
$core_instance
;
37
private
static
$plugin_instance
;
38
39
public
function
core
() :
CoreSerializer
40
{
41
if
(!isset(self::$core_instance)) {
42
self::$core_instance =
new
CoreSerializer
();
43
}
44
45
return
self::$core_instance;
46
}
47
48
public
function
plugin
() :
PluginSerializer
49
{
50
if
(!isset(self::$plugin_instance)) {
51
self::$plugin_instance =
new
PluginSerializer
();
52
}
53
54
return
self::$plugin_instance;
55
}
56
61
public
function
fromSerializedIdentification
(
string
$serialized_identification) :
SerializerInterface
62
{
63
$plugin
= $this->
plugin
();
64
if
(
$plugin
->canHandle($serialized_identification)) {
65
return
$plugin
;
66
}
67
68
$core = $this->
core
();
69
if
($core->canHandle($serialized_identification)) {
70
return
$core;
71
}
72
73
throw
new
InvalidArgumentException
(
"Nobody can handle serialized identification '$serialized_identification'."
);
74
}
75
}
ILIAS\GlobalScreen\Identification\Serializer\SerializerFactory\fromSerializedIdentification
fromSerializedIdentification(string $serialized_identification)
Definition:
SerializerFactory.php:61
XapiProxy\$plugin
$plugin
Definition:
xapiproxy.php:8
ILIAS\GlobalScreen\Identification\Serializer\SerializerFactory\$core_instance
static $core_instance
Definition:
SerializerFactory.php:33
ILIAS\GlobalScreen\Identification\Serializer\CoreSerializer
Class CoreSerializer.
Definition:
CoreSerializer.php:32
ILIAS\GlobalScreen\Identification\Serializer
Definition:
CoreSerializer.php:20
ILIAS\GlobalScreen\Identification\Serializer\SerializerFactory\core
core()
Definition:
SerializerFactory.php:39
ILIAS\GlobalScreen\Identification\Serializer\PluginSerializer
Class PluginSerializer.
Definition:
PluginSerializer.php:34
ILIAS\GlobalScreen\Identification\Serializer\SerializerFactory\plugin
plugin()
Definition:
SerializerFactory.php:48
ILIAS\GlobalScreen\Identification\Serializer\SerializerInterface
Interface SerializerInterface.
Definition:
SerializerInterface.php:31
InvalidArgumentException
ILIAS\GlobalScreen\Identification\Serializer\SerializerFactory\$plugin_instance
static $plugin_instance
Definition:
SerializerFactory.php:37
ILIAS\GlobalScreen\Identification\Serializer\SerializerFactory
Class SerializerFactory.
Definition:
SerializerFactory.php:28
src
GlobalScreen
Identification
Serializer
SerializerFactory.php
Generated on Thu Apr 3 2025 21:01:35 for ILIAS by
1.8.13 (using
Doxyfile
)