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
ResourceIdentification.php
Go to the documentation of this file.
1
<?php declare(strict_types=1);
2
3
namespace
ILIAS\MainMenu\Storage\Identification
;
4
5
use
Serializable
;
6
14
class
ResourceIdentification
implements
Serializable
15
{
16
20
private
$unique_id
;
21
22
28
public
function
__construct
(
string
$unique_id
)
29
{
30
$this->unique_id =
$unique_id
;
31
}
32
33
37
public
function
serialize
() : string
38
{
39
return
$this->unique_id
;
40
}
41
42
46
public
function
unserialize
($serialized) : void
47
{
48
$this->unique_id = $serialized;
49
}
50
51
55
public
function
__toString
()
56
{
57
return
$this->
serialize
();
58
}
59
}
ILIAS\MainMenu\Storage\Identification\ResourceIdentification\__toString
__toString()
Definition:
ResourceIdentification.php:55
ILIAS\MainMenu\Storage\Identification\ResourceIdentification
Interface Identification.
Definition:
ResourceIdentification.php:14
ILIAS\MainMenu\Storage\Identification\ResourceIdentification\unserialize
unserialize($serialized)
Definition:
ResourceIdentification.php:46
ILIAS\MainMenu\Storage\Identification\ResourceIdentification\serialize
serialize()
Definition:
ResourceIdentification.php:37
ILIAS\MainMenu\Storage\Identification
Definition:
IdentificationGenerator.php:3
ILIAS\MainMenu\Storage\Identification\ResourceIdentification\__construct
__construct(string $unique_id)
ResourceIdentification constructor.
Definition:
ResourceIdentification.php:28
ILIAS\MainMenu\Storage\Identification\ResourceIdentification\$unique_id
$unique_id
Definition:
ResourceIdentification.php:20
Serializable
Services
MainMenu
classes
Storage
Identification
ResourceIdentification.php
Generated on Thu Apr 3 2025 20:01:09 for ILIAS by
1.8.13 (using
Doxyfile
)