ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilUtilitiesSetupConfig.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Setup;
22 
23 class ilUtilitiesSetupConfig implements Setup\Config
24 {
25  protected string $path_to_convert;
26  protected string $path_to_zip;
27  protected string $path_to_unzip;
28 
29  public function __construct(
30  string $path_to_convert,
31  string $path_to_zip,
32  string $path_to_unzip
33  ) {
34  $this->path_to_convert = $this->toLinuxConvention($path_to_convert);
35  $this->path_to_zip = $this->toLinuxConvention($path_to_zip);
36  $this->path_to_unzip = $this->toLinuxConvention($path_to_unzip);
37  }
38 
39  protected function toLinuxConvention(?string $p): ?string
40  {
41  if (!$p) {
42  return null;
43  }
44  return preg_replace("/\\\\/", "/", $p);
45  }
46 
47  public function getPathToConvert(): string
48  {
50  }
51 
52  public function getPathToZip(): string
53  {
54  return $this->path_to_zip;
55  }
56 
57  public function getPathToUnzip(): string
58  {
59  return $this->path_to_unzip;
60  }
61 }
__construct(string $path_to_convert, string $path_to_zip, string $path_to_unzip)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...