ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
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:144
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 Sun Aug 31 2025 23:02:59 for ILIAS by
1.8.13 (using
Doxyfile
)