ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
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 ()
 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 ( )

Definition at line 63 of file ZipOptions.php.

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

63  : int
64  {
65  return $this->deflate_level;
66  }

◆ getIterations()

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

Definition at line 58 of file ZipOptions.php.

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

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

◆ getZipOutputName()

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

Definition at line 41 of file ZipOptions.php.

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

Referenced by ILIAS\Filesystem\Util\Archive\Zip\__construct(), and ILIAS\Filesystem\Util\Archive\Archives\mergeZipOptions().

41  : ?string
42  {
44  }
+ Here is the caller graph for this function:

◆ getZipOutputPath()

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

Definition at line 53 of file ZipOptions.php.

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

Referenced by ILIAS\Filesystem\Util\Archive\Zip\__construct(), and ILIAS\Filesystem\Util\Archive\Archives\mergeZipOptions().

53  : ?string
54  {
56  }
+ Here is the caller graph for this function:

◆ withZipOutputName()

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

Definition at line 46 of file ZipOptions.php.

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

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

46  : self
47  {
48  $clone = clone $this;
49  $clone->zip_output_name = $zip_output_name;
50  return $clone;
51  }
+ 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.

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

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

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: