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
class.ilImportDirectory.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
use
ILIAS\Filesystem\Filesystem
;
5
6
abstract
class
ilImportDirectory
implements
ilImportDirectoryHandler
7
{
11
private
const
PATH_UPLOAD_PREFIX
=
'upload'
;
12
16
private
$relative_path
;
17
21
protected
$storage
;
22
26
protected
$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
ilUtil::getDataDir
() .
'/'
.
$this->relative_path
;
57
}
58
59
abstract
protected
function
getPathPrefix
() : string;
60
61
62
private
function
init
()
63
{
64
$this->relative_path = self::PATH_UPLOAD_PREFIX .
'/'
. $this->
getPathPrefix
();
65
}
66
}
ilImportDirectory\PATH_UPLOAD_PREFIX
const PATH_UPLOAD_PREFIX
Definition:
class.ilImportDirectory.php:11
ilImportDirectory\exists
exists()
Definition:
class.ilImportDirectory.php:43
ilImportDirectoryHandler
Import directory interface.
Definition:
interface.ilImportDirectoryHandler.php:11
Filesystem
ilImportDirectory\__construct
__construct(Filesystem $storage, ilLogger $logger)
Definition:
class.ilImportDirectory.php:28
ilImportDirectory
Definition:
class.ilImportDirectory.php:6
ilImportDirectory\init
init()
Definition:
class.ilImportDirectory.php:62
ilImportDirectory\$logger
$logger
Definition:
class.ilImportDirectory.php:26
ilImportDirectory\getRelativePath
getRelativePath()
Definition:
class.ilImportDirectory.php:35
ilImportDirectory\getPathPrefix
getPathPrefix()
ilImportDirectory\$storage
$storage
Definition:
class.ilImportDirectory.php:21
ilImportDirectory\$relative_path
$relative_path
Definition:
class.ilImportDirectory.php:16
ilUtil\getDataDir
static getDataDir()
get data directory (outside webspace)
Definition:
class.ilUtil.php:1530
ilImportDirectory\getAbsolutePath
getAbsolutePath()
Definition:
class.ilImportDirectory.php:51
ilLogger
Component logger with individual log levels by component id.
Definition:
class.ilLogger.php:19
Filesystem
Class FlySystemFileAccessTest disabled disabled disabled.
Services
Export
classes
ImportDirectory
class.ilImportDirectory.php
Generated on Thu Apr 3 2025 21:01:22 for ILIAS by
1.8.13 (using
Doxyfile
)