ILIAS
trunk Revision v11.0_alpha-1753-gb21ca8c4367
◀ 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
UnzipOptions.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Filesystem\Util\Archive
;
22
26
final
class
UnzipOptions
extends
Options
27
{
28
protected
?
string
$zip_output_path
=
null
;
29
private
bool
$flat
=
false
;
30
private
bool
$overwrite
=
false
;
31
32
public
function
getZipOutputPath
(): ?string
33
{
34
return
$this->zip_output_path
;
35
}
36
37
public
function
withZipOutputPath
(
string
$zip_output_path): self
38
{
39
$clone = clone $this;
40
$clone->zip_output_path =
$zip_output_path
;
41
return
$clone;
42
}
43
44
public
function
isOverwrite
(): bool
45
{
46
return
$this->overwrite
;
47
}
48
49
public
function
withOverwrite
(
bool
$overwrite): self
50
{
51
$clone = clone $this;
52
$clone->overwrite =
$overwrite
;
53
return
$clone;
54
}
55
56
}
ILIAS\Filesystem\Util\Archive\UnzipOptions\withOverwrite
withOverwrite(bool $overwrite)
Definition:
UnzipOptions.php:49
ILIAS\Filesystem\Util\Archive\UnzipOptions\$overwrite
bool $overwrite
Definition:
UnzipOptions.php:30
ILIAS\Filesystem\Util\Archive
Definition:
Archives.php:21
ILIAS\Filesystem\Util\Archive\UnzipOptions
Definition:
UnzipOptions.php:26
ILIAS\Filesystem\Util\Archive\UnzipOptions\$zip_output_path
string $zip_output_path
Definition:
UnzipOptions.php:28
ILIAS\Filesystem\Util\Archive\UnzipOptions\$flat
bool $flat
Definition:
UnzipOptions.php:29
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\Filesystem\Util\Archive\UnzipOptions\withZipOutputPath
withZipOutputPath(string $zip_output_path)
Definition:
UnzipOptions.php:37
ILIAS\Filesystem\Util\Archive\UnzipOptions\getZipOutputPath
getZipOutputPath()
Definition:
UnzipOptions.php:32
ILIAS\Filesystem\Util\Archive\UnzipOptions\isOverwrite
isOverwrite()
Definition:
UnzipOptions.php:44
ILIAS\Filesystem\Util\Archive\Options
Definition:
Options.php:27
components
ILIAS
Filesystem
src
Util
Archive
UnzipOptions.php
Generated on Thu Apr 10 2025 23:03:15 for ILIAS by
1.8.13 (using
Doxyfile
)