ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilUtilitiesSetupConfig.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2019 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
5 use ILIAS\Setup;
6 
7 class ilUtilitiesSetupConfig implements Setup\Config
8 {
12  protected $path_to_convert;
13 
17  protected $path_to_zip;
18 
22  protected $path_to_unzip;
23 
24  public function __construct(
25  string $path_to_convert,
26  string $path_to_zip,
27  string $path_to_unzip
28  ) {
29  $this->path_to_convert = $this->toLinuxConvention($path_to_convert);
30  $this->path_to_zip = $this->toLinuxConvention($path_to_zip);
31  $this->path_to_unzip = $this->toLinuxConvention($path_to_unzip);
32  }
33 
34  protected function toLinuxConvention(?string $p) : ?string
35  {
36  if (!$p) {
37  return null;
38  }
39  return preg_replace("/\\\\/", "/", $p);
40  }
41 
42  public function getPathToConvert() : string
43  {
45  }
46 
47  public function getPathToZip() : string
48  {
49  return $this->path_to_zip;
50  }
51 
52  public function getPathToUnzip() : string
53  {
54  return $this->path_to_unzip;
55  }
56 }
__construct(string $path_to_convert, string $path_to_zip, string $path_to_unzip)