ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilStyleSetupConfig.php
Go to the documentation of this file.
1<?php
2
19use ILIAS\Setup;
21
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 {
58 }
59}
__construct(bool $manage_system_styles, ?string $path_to_scss)
A configuration for the setup.
Definition: Config.php:27
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...