ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilStyleSetupConfig.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
use
ILIAS\Data\Password
;
7
8
class
ilStyleSetupConfig
implements
Setup\Config
9
{
13
protected
$manage_system_styles
;
14
18
protected
$path_to_lessc
;
19
20
public
function
__construct
(
21
bool
$manage_system_styles
,
22
?
string
$path_to_lessc
23
) {
24
$this->manage_system_styles =
$manage_system_styles
;
25
$this->path_to_lessc = $this->
toLinuxConvention
($path_to_lessc);
26
}
27
28
protected
function
toLinuxConvention
(?
string
$p) : ?string
29
{
30
if
(!$p) {
31
return
null;
32
}
33
return
preg_replace(
"/\\\\/"
,
"/"
, $p);
34
}
35
36
public
function
getManageSystemStyles
() : bool
37
{
38
return
$this->manage_system_styles
;
39
}
40
41
public
function
getPathToLessc
() : ?string
42
{
43
return
$this->path_to_lessc
;
44
}
45
}
ilStyleSetupConfig\getPathToLessc
getPathToLessc()
Definition:
class.ilStyleSetupConfig.php:41
ilStyleSetupConfig
Definition:
class.ilStyleSetupConfig.php:8
ilStyleSetupConfig\$path_to_lessc
$path_to_lessc
Definition:
class.ilStyleSetupConfig.php:18
ilStyleSetupConfig\$manage_system_styles
$manage_system_styles
Definition:
class.ilStyleSetupConfig.php:13
ilStyleSetupConfig\toLinuxConvention
toLinuxConvention(?string $p)
Definition:
class.ilStyleSetupConfig.php:28
ilStyleSetupConfig\getManageSystemStyles
getManageSystemStyles()
Definition:
class.ilStyleSetupConfig.php:36
ILIAS\Setup
Definition:
AchievementTracker.php:5
Password
ilStyleSetupConfig\__construct
__construct(bool $manage_system_styles, ?string $path_to_lessc)
Definition:
class.ilStyleSetupConfig.php:20
Services
Style
classes
Setup
class.ilStyleSetupConfig.php
Generated on Wed Apr 2 2025 20:01:20 for ILIAS by
1.8.13 (using
Doxyfile
)