ILIAS
trunk Revision v11.0_alpha-1713-gd8962da2f67
◀ 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
ZipOptions.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
ZipOptions
extends
Options
27
{
28
private
?
string
$zip_output_path
=
null
;
29
private
?
string
$zip_output_name
=
null
;
30
private
int
$iterations
= 1000;
31
private
int
$deflate_level
= 9;
32
33
34
public
function
withZipOutputPath
(
string
$zip_output_path): self
35
{
36
$clone = clone $this;
37
$clone->zip_output_path =
$zip_output_path
;
38
return
$clone;
39
}
40
41
public
function
getZipOutputName
(): ?string
42
{
43
return
$this->zip_output_name
;
44
}
45
46
public
function
withZipOutputName
(
string
$zip_output_name): self
47
{
48
$clone = clone $this;
49
$clone->zip_output_name =
$zip_output_name
;
50
return
$clone;
51
}
52
53
public
function
getZipOutputPath
(): ?string
54
{
55
return
$this->zip_output_path
;
56
}
57
58
public
function
getIterations
():
int
59
{
60
return
$this->iterations
;
61
}
62
63
public
function
getDeflateLevel
():
int
64
{
65
return
$this->deflate_level
;
66
}
67
}
ILIAS\Filesystem\Util\Archive\ZipOptions\getIterations
getIterations()
Definition:
ZipOptions.php:58
ILIAS\Filesystem\Util\Archive
Definition:
Archives.php:21
ILIAS\Filesystem\Util\Archive\ZipOptions
Definition:
ZipOptions.php:26
ILIAS\Filesystem\Util\Archive\ZipOptions\$zip_output_name
string $zip_output_name
Definition:
ZipOptions.php:29
ILIAS\Filesystem\Util\Archive\ZipOptions\$iterations
int $iterations
Definition:
ZipOptions.php:30
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\Filesystem\Util\Archive\ZipOptions\$deflate_level
int $deflate_level
Definition:
ZipOptions.php:31
ILIAS\Filesystem\Util\Archive\ZipOptions\withZipOutputName
withZipOutputName(string $zip_output_name)
Definition:
ZipOptions.php:46
ILIAS\Filesystem\Util\Archive\ZipOptions\getDeflateLevel
getDeflateLevel()
Definition:
ZipOptions.php:63
ILIAS\Filesystem\Util\Archive\ZipOptions\getZipOutputName
getZipOutputName()
Definition:
ZipOptions.php:41
ILIAS\Filesystem\Util\Archive\ZipOptions\withZipOutputPath
withZipOutputPath(string $zip_output_path)
Definition:
ZipOptions.php:34
ILIAS\Filesystem\Util\Archive\ZipOptions\$zip_output_path
string $zip_output_path
Definition:
ZipOptions.php:28
ILIAS\Filesystem\Util\Archive\ZipOptions\getZipOutputPath
getZipOutputPath()
Definition:
ZipOptions.php:53
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Filesystem\Util\Archive\Options
Definition:
Options.php:27
components
ILIAS
Filesystem
src
Util
Archive
ZipOptions.php
Generated on Fri Apr 4 2025 23:03:10 for ILIAS by
1.8.13 (using
Doxyfile
)