ILIAS
trunk Revision v11.0_alpha-1723-g8e69f309bab
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
FilesystemsImpl.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Filesystem
;
22
29
final
class
FilesystemsImpl
implements
Filesystems
30
{
34
public
function
__construct
(
35
private
Filesystem
$storage,
36
private
Filesystem
$web,
37
private
Filesystem
$temp,
38
private
Filesystem
$customizing,
39
private
FileSystem $libs,
40
private
FileSystem $node_modules
41
) {
42
}
43
47
public
function
web
():
Filesystem
48
{
49
return
$this->web;
50
}
51
55
public
function
storage
():
Filesystem
56
{
57
return
$this->storage;
58
}
59
63
public
function
temp
():
Filesystem
64
{
65
return
$this->temp;
66
}
67
71
public
function
customizing
():
Filesystem
72
{
73
return
$this->customizing;
74
}
75
79
public
function
libs
():
Filesystem
80
{
81
return
$this->libs;
82
}
83
87
public
function
nodeModules
():
Filesystem
88
{
89
return
$this->node_modules;
90
}
91
}
ILIAS\Filesystem\FilesystemsImpl\storage
storage()
Definition:
FilesystemsImpl.php:55
ILIAS\Filesystem\FilesystemsImpl\temp
temp()
Definition:
FilesystemsImpl.php:63
ILIAS\Filesystem\FilesystemsImpl\libs
libs()
Definition:
FilesystemsImpl.php:79
ILIAS\Filesystem\FilesystemsImpl\customizing
customizing()
Definition:
FilesystemsImpl.php:71
ILIAS\Filesystem\FilesystemsImpl\nodeModules
nodeModules()
Definition:
FilesystemsImpl.php:87
ILIAS\Filesystem
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\Filesystem\FilesystemsImpl\__construct
__construct(private Filesystem $storage, private Filesystem $web, private Filesystem $temp, private Filesystem $customizing, private FileSystem $libs, private FileSystem $node_modules)
FilesystemsImpl constructor.
Definition:
FilesystemsImpl.php:34
ILIAS\Filesystem\FilesystemsImpl\web
web()
Definition:
FilesystemsImpl.php:47
ILIAS\Filesystem\FilesystemsImpl
The Filesystems implementation holds the configuration for the filesystem service.
Definition:
FilesystemsImpl.php:29
Filesystem
ILIAS\Filesystem\Filesystems
The Filesystems interface defines the access methods which can be used to fetch the different filesys...
Definition:
Filesystems.php:29
components
ILIAS
Filesystem
src
FilesystemsImpl.php
Generated on Sun Apr 6 2025 23:03:16 for ILIAS by
1.8.13 (using
Doxyfile
)