ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.MediaObjectStyleSelector.php
Go to the documentation of this file.
1
<?php
2
19
use
ILIAS\COPage\Editor\Server\UIWrapper
;
20
use
ILIAS\UI\Component\Dropdown\Dropdown
;
21
25
class
MediaObjectStyleSelector
26
{
27
public
static
string
$style_selector_reset
=
"margin-top:2px; margin-bottom:2px; text-indent:0px; position:static; float:none; width: auto;"
;
28
protected
int
$style_id
= 0;
29
30
protected
UIWrapper
$ui_wrapper
;
31
protected \ILIAS\DI\UIServices
$ui
;
32
protected \ilLanguage
$lng
;
33
34
public
function
__construct
(
35
UIWrapper
$ui_wrapper,
36
int
$style_id
37
) {
38
global
$DIC
;
39
40
$this->
ui
= $DIC->ui();
41
$this->ui_wrapper =
$ui_wrapper
;
42
$this->style_id =
$style_id
;
43
$this->
lng
= $DIC->language();
44
}
45
46
public
function
getStyleSelector
(
47
string
$a_selected,
48
string
$type =
"media-action"
,
49
string
$action =
"media.class"
,
50
string
$attr =
"class"
51
):
Dropdown
{
52
$a_chars =
\ilPCMediaObjectGUI::_getCharacteristics
($this->style_id);
53
$ui_wrapper =
$this->ui_wrapper
;
54
$ui =
$this->ui
;
55
56
$buttons = [];
57
foreach
($a_chars as $char => $char_lang) {
58
$buttons[] = $ui_wrapper->
getButton
($char_lang, $type, $action, [$attr => $char]);
59
}
60
return
$ui->factory()->dropdown()->standard($buttons)->withLabel($a_selected);
61
}
62
}
Dropdown
MediaObjectStyleSelector\$lng
ilLanguage $lng
Definition:
class.MediaObjectStyleSelector.php:32
MediaObjectStyleSelector\$ui
ILIAS DI UIServices $ui
Definition:
class.MediaObjectStyleSelector.php:31
MediaObjectStyleSelector
MediaObjectStyleSelector\$style_selector_reset
static string $style_selector_reset
Definition:
class.MediaObjectStyleSelector.php:27
ILIAS\COPage\Editor\Server\UIWrapper
Definition:
class.UIWrapper.php:28
UIWrapper
ilPCMediaObjectGUI\_getCharacteristics
static _getCharacteristics(int $a_style_id)
Get characteristics.
Definition:
class.ilPCMediaObjectGUI.php:1461
ILIAS\COPage\Editor\Server\UIWrapper\getButton
getButton(string $content, string $type, string $action, ?array $data=null, string $component="", bool $primary=false, string $aria_label="")
Definition:
class.UIWrapper.php:46
MediaObjectStyleSelector\$style_id
int $style_id
Definition:
class.MediaObjectStyleSelector.php:28
ILIAS\UI\Component\Dropdown\Dropdown
This describes commonalities between all types of Dropdowns.
Definition:
Dropdown.php:34
MediaObjectStyleSelector\getStyleSelector
getStyleSelector(string $a_selected, string $type="media-action", string $action="media.class", string $attr="class")
Definition:
class.MediaObjectStyleSelector.php:46
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:61
ILIAS\Repository\ui
ui()
Definition:
trait.GlobalDICGUIServices.php:53
$DIC
global $DIC
Definition:
shib_login.php:22
MediaObjectStyleSelector\__construct
__construct(UIWrapper $ui_wrapper, int $style_id)
Definition:
class.MediaObjectStyleSelector.php:34
MediaObjectStyleSelector\$ui_wrapper
UIWrapper $ui_wrapper
Definition:
class.MediaObjectStyleSelector.php:30
components
ILIAS
COPage
PC
MediaObject
class.MediaObjectStyleSelector.php
Generated on Wed Apr 2 2025 23:02:35 for ILIAS by
1.8.13 (using
Doxyfile
)