ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilStyleSetupConfig.php
Go to the documentation of this file.
1 <?php
2 
19 use ILIAS\Setup;
21 
22 class ilStyleSetupConfig implements Setup\Config
23 {
28 
32  protected $path_to_scss;
33 
34  public function __construct(
36  ?string $path_to_scss
37  ) {
38  $this->manage_system_styles = $manage_system_styles;
39  $this->path_to_scss = $this->toLinuxConvention($path_to_scss);
40  }
41 
42  protected function toLinuxConvention(?string $p): ?string
43  {
44  if (!$p) {
45  return null;
46  }
47  return preg_replace("/\\\\/", "/", $p);
48  }
49 
50  public function getManageSystemStyles(): bool
51  {
53  }
54 
55  public function getPathToScss(): ?string
56  {
57  return $this->path_to_scss;
58  }
59 }
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...
__construct(bool $manage_system_styles, ?string $path_to_scss)