ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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
class.ilImportDirectory.php
Go to the documentation of this file.
1
<?php
18
use
ILIAS\Filesystem\Filesystem
;
19
20
abstract
class
ilImportDirectory
implements
ilImportDirectoryHandler
21
{
22
private
const
PATH_UPLOAD_PREFIX
=
'upload'
;
23
private
string
$relative_path
;
24
25
protected
Filesystem
$storage
;
26
protected
ilLogger
$logger
;
27
28
public
function
__construct
(
Filesystem
$storage,
ilLogger
$logger)
29
{
30
$this->storage =
$storage
;
31
$this->
logger
=
$logger
;
32
$this->
init
();
33
}
34
35
public
function
getRelativePath
(): string
36
{
37
return
$this->relative_path
;
38
}
39
43
public
function
exists
(): bool
44
{
45
return
$this->storage->hasDir($this->relative_path);
46
}
47
51
public
function
getAbsolutePath
(): string
52
{
53
if
(!$this->
exists
()) {
54
return
''
;
55
}
56
return
ilFileUtils::getDataDir
() .
'/'
.
$this->relative_path
;
57
}
58
59
abstract
protected
function
getPathPrefix
(): string;
60
61
private
function
init
(): void
62
{
63
$this->relative_path = self::PATH_UPLOAD_PREFIX .
'/'
. $this->
getPathPrefix
();
64
}
65
}
ilLogger
ilImportDirectory\PATH_UPLOAD_PREFIX
const PATH_UPLOAD_PREFIX
Definition:
class.ilImportDirectory.php:22
ilImportDirectory\exists
exists()
Definition:
class.ilImportDirectory.php:43
ilImportDirectoryHandler
Import directory interface.
Definition:
interface.ilImportDirectoryHandler.php:26
ilImportDirectory\$storage
Filesystem $storage
Definition:
class.ilImportDirectory.php:25
Filesystem
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilImportDirectory\__construct
__construct(Filesystem $storage, ilLogger $logger)
Definition:
class.ilImportDirectory.php:28
ilImportDirectory\$relative_path
string $relative_path
Definition:
class.ilImportDirectory.php:23
ilImportDirectory\$logger
ilLogger $logger
Definition:
class.ilImportDirectory.php:26
ilImportDirectory
Definition:
class.ilImportDirectory.php:20
ilImportDirectory\init
init()
Definition:
class.ilImportDirectory.php:61
ilImportDirectory\getRelativePath
getRelativePath()
Definition:
class.ilImportDirectory.php:35
ilImportDirectory\getPathPrefix
getPathPrefix()
ilFileUtils\getDataDir
static getDataDir()
get data directory (outside webspace)
Definition:
class.ilFileUtils.php:250
ilImportDirectory\getAbsolutePath
getAbsolutePath()
Definition:
class.ilImportDirectory.php:51
ILIAS\Repository\logger
logger()
Definition:
trait.GlobalDICDomainServices.php:71
Filesystem
components
ILIAS
Export
classes
ImportDirectory
class.ilImportDirectory.php
Generated on Wed Apr 2 2025 23:02:48 for ILIAS by
1.8.13 (using
Doxyfile
)