ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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.ilUtilitiesSetupConfig.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 2019 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
5
use
ILIAS\Setup
;
6
7
class
ilUtilitiesSetupConfig
implements
Setup\Config
8
{
12
protected
$path_to_convert
;
13
17
protected
$path_to_zip
;
18
22
protected
$path_to_unzip
;
23
24
public
function
__construct
(
25
string
$path_to_convert
,
26
string
$path_to_zip
,
27
string
$path_to_unzip
28
) {
29
$this->path_to_convert = $this->
toLinuxConvention
($path_to_convert);
30
$this->path_to_zip = $this->
toLinuxConvention
($path_to_zip);
31
$this->path_to_unzip = $this->
toLinuxConvention
($path_to_unzip);
32
}
33
34
protected
function
toLinuxConvention
(?
string
$p) : ?string
35
{
36
if
(!$p) {
37
return
null;
38
}
39
return
preg_replace(
"/\\\\/"
,
"/"
, $p);
40
}
41
42
public
function
getPathToConvert
() : string
43
{
44
return
$this->path_to_convert
;
45
}
46
47
public
function
getPathToZip
() : string
48
{
49
return
$this->path_to_zip
;
50
}
51
52
public
function
getPathToUnzip
() : string
53
{
54
return
$this->path_to_unzip
;
55
}
56
}
ilUtilitiesSetupConfig\getPathToConvert
getPathToConvert()
Definition:
class.ilUtilitiesSetupConfig.php:42
ilUtilitiesSetupConfig\__construct
__construct(string $path_to_convert, string $path_to_zip, string $path_to_unzip)
Definition:
class.ilUtilitiesSetupConfig.php:24
ilUtilitiesSetupConfig\toLinuxConvention
toLinuxConvention(?string $p)
Definition:
class.ilUtilitiesSetupConfig.php:34
ilUtilitiesSetupConfig\$path_to_convert
$path_to_convert
Definition:
class.ilUtilitiesSetupConfig.php:12
ilUtilitiesSetupConfig\$path_to_zip
$path_to_zip
Definition:
class.ilUtilitiesSetupConfig.php:17
ilUtilitiesSetupConfig\getPathToZip
getPathToZip()
Definition:
class.ilUtilitiesSetupConfig.php:47
ilUtilitiesSetupConfig
Definition:
class.ilUtilitiesSetupConfig.php:7
ILIAS\Setup
Definition:
AchievementTracker.php:5
ilUtilitiesSetupConfig\getPathToUnzip
getPathToUnzip()
Definition:
class.ilUtilitiesSetupConfig.php:52
ilUtilitiesSetupConfig\$path_to_unzip
$path_to_unzip
Definition:
class.ilUtilitiesSetupConfig.php:22
Services
Utilities
classes
Setup
class.ilUtilitiesSetupConfig.php
Generated on Thu Apr 3 2025 20:01:17 for ILIAS by
1.8.13 (using
Doxyfile
)