ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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.SectionStyleSelector.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2020 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5
namespace
ILIAS\COPage\Editor\Components\Section
;
6
11
class
SectionStyleSelector
12
{
13
public
static
$style_selector_reset
=
"margin-top:2px; margin-bottom:2px; text-indent:0px; position:static; float:none; width: auto;"
;
14
18
protected
$ui_wrapper
;
19
23
protected
$ui
;
24
28
protected
$lng
;
29
33
public
function
__construct
(
$ui_wrapper
, $style_id)
34
{
35
global
$DIC
;
36
37
$this->
ui
= $DIC->ui();
38
$this->ui_wrapper =
$ui_wrapper
;
39
$this->style_id = $style_id;
40
$this->lng = $DIC->language();
41
}
42
46
public
function
getStyleSelector
($a_selected,
$type
=
"sec-action"
, $action =
"sec.class"
, $attr =
"class"
, $include_none =
false
)
47
{
48
$a_chars =
\ilPCSectionGUI::_getCharacteristics
($this->style_id);
49
$ui_wrapper
=
$this->ui_wrapper
;
50
$ui
=
$this->ui
;
51
$lng
=
$this->lng
;
52
53
$buttons = [];
54
if
($include_none) {
55
$t =
"section"
;
56
$tag =
"div"
;
57
$html =
'<div class="ilCOPgEditStyleSelectionItem"><'
. $tag .
' class="" style="'
. self::$style_selector_reset .
'">'
.
$lng
->txt(
"cont_none"
) .
"</"
. $tag .
"></div>"
;
58
$buttons[] =
$ui_wrapper
->getButton($html,
$type
, $action, [$attr =>
""
]);
59
}
60
foreach
($a_chars as $char => $char_lang) {
61
$t =
"section"
;
62
$tag =
"div"
;
63
$html =
'<div class="ilCOPgEditStyleSelectionItem"><'
. $tag .
' class="ilc_'
. $t .
'_'
. $char .
'" style="'
. self::$style_selector_reset .
'">'
. $char_lang .
"</"
. $tag .
"></div>"
;
64
$buttons[] =
$ui_wrapper
->getButton($html,
$type
, $action, [$attr => $char]);
65
}
66
$dd =
$ui
->factory()->dropdown()->standard($buttons)->withLabel($a_selected);
67
return
$dd;
68
}
69
}
ILIAS\COPage\Editor\Components\Section\SectionStyleSelector\$ui_wrapper
$ui_wrapper
Definition:
class.SectionStyleSelector.php:18
$type
$type
Definition:
proxy_ylocal.php:10
ILIAS\COPage\Editor\Components\Section\SectionStyleSelector\$ui
$ui
Definition:
class.SectionStyleSelector.php:23
ILIAS\COPage\Editor\Components\Section\SectionStyleSelector\$style_selector_reset
static $style_selector_reset
Definition:
class.SectionStyleSelector.php:13
ilPCSectionGUI\_getCharacteristics
static _getCharacteristics($a_style_id)
Get characteristics.
Definition:
class.ilPCSectionGUI.php:117
ILIAS\COPage\Editor\Components\Section
Definition:
class.SectionCommandActionHandler.php:5
$DIC
global $DIC
Definition:
goto.php:24
ILIAS\COPage\Editor\Components\Section\SectionStyleSelector\$lng
$lng
Definition:
class.SectionStyleSelector.php:28
ui
ui()
Definition:
ui.php:5
ILIAS\COPage\Editor\Components\Section\SectionStyleSelector\getStyleSelector
getStyleSelector($a_selected, $type="sec-action", $action="sec.class", $attr="class", $include_none=false)
Get style selector.
Definition:
class.SectionStyleSelector.php:46
ILIAS\COPage\Editor\Components\Section\SectionStyleSelector\__construct
__construct($ui_wrapper, $style_id)
Constructor.
Definition:
class.SectionStyleSelector.php:33
ILIAS\COPage\Editor\Components\Section\SectionStyleSelector
Definition:
class.SectionStyleSelector.php:11
Services
COPage
Editor
Components
Section
class.SectionStyleSelector.php
Generated on Thu Apr 3 2025 21:01:18 for ILIAS by
1.8.13 (using
Doxyfile
)