ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
UUIDBasedPathGenerator.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\ResourceStorage\StorageHandler\PathGenerator
;
22
23
use
ILIAS\ResourceStorage\Identification\ResourceIdentification
;
24
31
class
UUIDBasedPathGenerator
implements
PathGenerator
32
{
33
public
function
getPathFor
(
ResourceIdentification
$i
): string
34
{
35
return
str_replace(
"-"
,
"/"
, $i->
serialize
());
36
}
37
38
public
function
getIdentificationFor
(
string
$path
):
ResourceIdentification
39
{
40
return
new
ResourceIdentification
(str_replace(
"/"
,
"-"
, $path));
41
}
42
}
ILIAS\ResourceStorage\Identification\AbstractIdentification\serialize
serialize()
Definition:
AbstractIdentification.php:42
ResourceIdentification
$path
$path
Definition:
ltiservices.php:32
ILIAS\ResourceStorage\Identification\ResourceIdentification
Class ResourceIdentification.
Definition:
ResourceIdentification.php:30
ILIAS\ResourceStorage\StorageHandler\PathGenerator\UUIDBasedPathGenerator
Class UUIDBasedPathGenerator.
Definition:
UUIDBasedPathGenerator.php:31
ILIAS\ResourceStorage\StorageHandler\PathGenerator\UUIDBasedPathGenerator\getIdentificationFor
getIdentificationFor(string $path)
Definition:
UUIDBasedPathGenerator.php:38
ILIAS\ResourceStorage\StorageHandler\PathGenerator\UUIDBasedPathGenerator\getPathFor
getPathFor(ResourceIdentification $i)
Definition:
UUIDBasedPathGenerator.php:33
ILIAS\ResourceStorage\StorageHandler\PathGenerator
Definition:
MaxNestingPathGenerator.php:21
ILIAS\ResourceStorage\StorageHandler\PathGenerator\PathGenerator
Class PathGenerator.
Definition:
PathGenerator.php:29
$i
$i
Definition:
metadata.php:41
src
ResourceStorage
StorageHandler
PathGenerator
UUIDBasedPathGenerator.php
Generated on Thu Apr 3 2025 22:02:46 for ILIAS by
1.8.13 (using
Doxyfile
)