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
FilesystemsImpl.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
namespace
ILIAS\Filesystem
;
6
7
/******************************************************************************
8
*
9
* This file is part of ILIAS, a powerful learning management system.
10
*
11
* ILIAS is licensed with the GPL-3.0, you should have received a copy
12
* of said license along with the source code.
13
*
14
* If this is not the case or you just want to try ILIAS, you'll find
15
* us at:
16
* https://www.ilias.de
17
* https://github.com/ILIAS-eLearning
18
*
19
*****************************************************************************/
30
final
class
FilesystemsImpl
implements
Filesystems
31
{
32
private
Filesystem
$node_modules
;
33
private
Filesystem
$libs
;
34
private
Filesystem
$storage
;
35
private
Filesystem
$web
;
36
private
Filesystem
$temp
;
37
private
Filesystem
$customizing
;
38
39
50
public
function
__construct
(
51
Filesystem
$storage,
52
Filesystem
$web,
53
Filesystem
$temp,
54
Filesystem
$customizing,
55
FileSystem $libs,
56
FileSystem $node_modules
57
) {
58
$this->
storage
=
$storage
;
59
$this->
web
=
$web
;
60
$this->
temp
=
$temp
;
61
$this->
customizing
=
$customizing
;
62
$this->
libs
=
$libs
;
63
$this->node_modules =
$node_modules
;
64
}
65
66
70
public
function
web
():
Filesystem
71
{
72
return
$this->web
;
73
}
74
75
79
public
function
storage
():
Filesystem
80
{
81
return
$this->storage
;
82
}
83
84
88
public
function
temp
():
Filesystem
89
{
90
return
$this->temp
;
91
}
92
93
97
public
function
customizing
():
Filesystem
98
{
99
return
$this->customizing
;
100
}
101
102
106
public
function
libs
():
Filesystem
107
{
108
return
$this->libs
;
109
}
110
114
public
function
nodeModules
():
Filesystem
115
{
116
return
$this->node_modules
;
117
}
118
}
ILIAS\Filesystem\FilesystemsImpl\storage
storage()
Definition:
FilesystemsImpl.php:79
ILIAS\Filesystem\FilesystemsImpl\$node_modules
Filesystem $node_modules
Definition:
FilesystemsImpl.php:32
ILIAS\Filesystem\FilesystemsImpl\$web
Filesystem $web
Definition:
FilesystemsImpl.php:35
ILIAS\Filesystem\FilesystemsImpl\temp
temp()
Definition:
FilesystemsImpl.php:88
ILIAS\Filesystem\FilesystemsImpl\libs
libs()
Definition:
FilesystemsImpl.php:106
ILIAS\Filesystem\FilesystemsImpl\customizing
customizing()
Definition:
FilesystemsImpl.php:97
ILIAS\Filesystem\FilesystemsImpl\$temp
Filesystem $temp
Definition:
FilesystemsImpl.php:36
ILIAS\Filesystem\FilesystemsImpl\nodeModules
nodeModules()
Definition:
FilesystemsImpl.php:114
ILIAS\Filesystem\FilesystemsImpl\$customizing
Filesystem $customizing
Definition:
FilesystemsImpl.php:37
ILIAS\Filesystem
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\Filesystem\FilesystemsImpl\web
web()
Definition:
FilesystemsImpl.php:70
ILIAS\Filesystem\FilesystemsImpl\$storage
Filesystem $storage
Definition:
FilesystemsImpl.php:34
ILIAS\Filesystem\FilesystemsImpl
Class FilesystemsImpl.
Definition:
FilesystemsImpl.php:30
ILIAS\Filesystem\FilesystemsImpl\$libs
Filesystem $libs
Definition:
FilesystemsImpl.php:33
ILIAS\Filesystem\FilesystemsImpl\__construct
__construct(Filesystem $storage, Filesystem $web, Filesystem $temp, Filesystem $customizing, FileSystem $libs, FileSystem $node_modules)
FilesystemsImpl constructor.
Definition:
FilesystemsImpl.php:50
Filesystem
Class FlySystemFileAccessTest disabled disabled disabled.
ILIAS\Filesystem\Filesystems
Class Filesystems.
Definition:
Filesystems.php:29
src
Filesystem
FilesystemsImpl.php
Generated on Fri Apr 4 2025 22:03:11 for ILIAS by
1.8.13 (using
Doxyfile
)