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
FilesystemsImpl.php
Go to the documentation of this file.
1
<?php declare(strict_types=1);
2
3
namespace
ILIAS\Filesystem
;
4
12
final
class
FilesystemsImpl
implements
Filesystems
13
{
14
18
private
$node_modules
;
22
private
$libs
;
26
private
$storage
;
30
private
$web
;
34
private
$temp
;
38
private
$customizing
;
39
49
public
function
__construct
(
50
Filesystem
$storage
,
51
Filesystem
$web
,
52
Filesystem
$temp
,
53
Filesystem
$customizing
,
54
FileSystem
$libs
,
55
FileSystem
$node_modules
56
) {
57
$this->
storage
=
$storage
;
58
$this->
web
=
$web
;
59
$this->
temp
=
$temp
;
60
$this->
customizing
=
$customizing
;
61
$this->
libs
=
$libs
;
62
$this->node_modules =
$node_modules
;
63
}
64
68
public
function
web
() :
Filesystem
69
{
70
return
$this->web
;
71
}
72
76
public
function
storage
() :
Filesystem
77
{
78
return
$this->storage
;
79
}
80
84
public
function
temp
() :
Filesystem
85
{
86
return
$this->temp
;
87
}
88
92
public
function
customizing
() :
Filesystem
93
{
94
return
$this->customizing
;
95
}
96
100
public
function
libs
() :
Filesystem
101
{
102
return
$this->libs
;
103
}
104
108
public
function
nodeModules
() :
Filesystem
109
{
110
return
$this->node_modules
;
111
}
112
}
ILIAS\Filesystem\FilesystemsImpl\storage
storage()
Definition:
FilesystemsImpl.php:76
ILIAS\Filesystem\FilesystemsImpl\$web
$web
Definition:
FilesystemsImpl.php:30
ILIAS\Filesystem\FilesystemsImpl\temp
temp()
Definition:
FilesystemsImpl.php:84
ILIAS\Filesystem\FilesystemsImpl\libs
libs()
Definition:
FilesystemsImpl.php:100
ILIAS\Filesystem\FilesystemsImpl\customizing
customizing()
Definition:
FilesystemsImpl.php:92
ILIAS\Filesystem\FilesystemsImpl\$temp
$temp
Definition:
FilesystemsImpl.php:34
ILIAS\Filesystem\FilesystemsImpl\nodeModules
nodeModules()
Definition:
FilesystemsImpl.php:108
ILIAS\Filesystem
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\Filesystem\FilesystemsImpl\$customizing
$customizing
Definition:
FilesystemsImpl.php:38
ILIAS\Filesystem\FilesystemsImpl\$libs
$libs
Definition:
FilesystemsImpl.php:22
ILIAS\Filesystem\FilesystemsImpl\web
web()
Definition:
FilesystemsImpl.php:68
ILIAS\Filesystem\FilesystemsImpl\$storage
$storage
Definition:
FilesystemsImpl.php:26
ILIAS\Filesystem\FilesystemsImpl\$node_modules
$node_modules
Definition:
FilesystemsImpl.php:18
ILIAS\Filesystem\FilesystemsImpl
Class FilesystemsImpl The Filesystems implementation holds the configuration for the filesystem servi...
Definition:
FilesystemsImpl.php:12
ILIAS\Filesystem\FilesystemsImpl\__construct
__construct(Filesystem $storage, Filesystem $web, Filesystem $temp, Filesystem $customizing, FileSystem $libs, FileSystem $node_modules)
FilesystemsImpl constructor.
Definition:
FilesystemsImpl.php:49
Filesystem
Class FlySystemFileAccessTest disabled disabled disabled.
ILIAS\Filesystem\Filesystems
Class Filesystems The Filesystems interface defines the access methods which can be used to fetch the...
Definition:
Filesystems.php:14
src
Filesystem
FilesystemsImpl.php
Generated on Mon Apr 7 2025 21:01:51 for ILIAS by
1.8.13 (using
Doxyfile
)