ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ILIAS\Filesystem\Util\Archive\ZipOptions Class Reference
+ Inheritance diagram for ILIAS\Filesystem\Util\Archive\ZipOptions:
+ Collaboration diagram for ILIAS\Filesystem\Util\Archive\ZipOptions:

Public Member Functions

 withZipOutputPath (string $zip_output_path)
 
 getZipOutputName ()
 
 withZipOutputName (string $zip_output_name)
 
 getZipOutputPath ()
 
 getIterations ()
 
 getDeflateLevel ()
 
- Public Member Functions inherited from ILIAS\Filesystem\Util\Archive\Options
 getIgnoredPathSnippets ()
 @description like __MACOSX, will filter out all paths which contain one of those snippets More...
 
 withDirectoryHandling (ZipDirectoryHandling $top_dir_handling)
 
 getDirectoryHandling ()
 

Private Attributes

string $zip_output_path = null
 
string $zip_output_name = null
 
int $iterations = 1000
 
int $deflate_level = 9
 

Additional Inherited Members

- Protected Attributes inherited from ILIAS\Filesystem\Util\Archive\Options
ZipDirectoryHandling $top_directory_handling = ZipDirectoryHandling::KEEP_STRUCTURE
 

Detailed Description

Author
Fabian Schmid fabia.nosp@m.n@sr.nosp@m..solu.nosp@m.tion.nosp@m.s

Definition at line 26 of file ZipOptions.php.

Member Function Documentation

◆ getDeflateLevel()

ILIAS\Filesystem\Util\Archive\ZipOptions::getDeflateLevel ( )

◆ getIterations()

ILIAS\Filesystem\Util\Archive\ZipOptions::getIterations ( )

Definition at line 58 of file ZipOptions.php.

58 : int
59 {
60 return $this->iterations;
61 }

References ILIAS\Filesystem\Util\Archive\ZipOptions\$iterations.

◆ getZipOutputName()

ILIAS\Filesystem\Util\Archive\ZipOptions::getZipOutputName ( )

◆ getZipOutputPath()

ILIAS\Filesystem\Util\Archive\ZipOptions::getZipOutputPath ( )

◆ withZipOutputName()

ILIAS\Filesystem\Util\Archive\ZipOptions::withZipOutputName ( string  $zip_output_name)

Definition at line 46 of file ZipOptions.php.

46 : self
47 {
48 $clone = clone $this;
49 $clone->zip_output_name = $zip_output_name;
50 return $clone;
51 }

References ILIAS\Filesystem\Util\Archive\ZipOptions\$zip_output_name.

Referenced by ILIAS\Filesystem\Util\Archive\Archives\mergeZipOptions().

+ Here is the caller graph for this function:

◆ withZipOutputPath()

ILIAS\Filesystem\Util\Archive\ZipOptions::withZipOutputPath ( string  $zip_output_path)

Definition at line 34 of file ZipOptions.php.

34 : self
35 {
36 $clone = clone $this;
37 $clone->zip_output_path = $zip_output_path;
38 return $clone;
39 }

References ILIAS\Filesystem\Util\Archive\ZipOptions\$zip_output_path.

Field Documentation

◆ $deflate_level

int ILIAS\Filesystem\Util\Archive\ZipOptions::$deflate_level = 9
private

◆ $iterations

int ILIAS\Filesystem\Util\Archive\ZipOptions::$iterations = 1000
private

◆ $zip_output_name

string ILIAS\Filesystem\Util\Archive\ZipOptions::$zip_output_name = null
private

◆ $zip_output_path

string ILIAS\Filesystem\Util\Archive\ZipOptions::$zip_output_path = null
private

The documentation for this class was generated from the following file: