ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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
Button.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Component\Button
;
22
23
use
ILIAS\UI\Component\Clickable
;
24
use
ILIAS\UI\Component\Component
;
25
use
ILIAS\UI\Component\Hoverable
;
26
use
ILIAS\UI\Component\JavaScriptBindable
;
27
use
ILIAS\UI\Component\HasHelpTopics
;
28
use
ILIAS\UI\Component\Symbol\Symbol
;
29
33
interface
Button
extends
Component
,
JavaScriptBindable
,
Clickable
,
Hoverable
,
Engageable
,
HasHelpTopics
34
{
38
public
function
getLabel
(): string;
39
43
public
function
withLabel
(
string
$label):
Button
;
44
48
public
function
withSymbol
(?
Symbol
$symbol):
self
;
49
56
public
function
getAction
();
57
61
public
function
isActive
(): bool;
62
69
public
function
withUnavailableAction
(
bool
$flag =
true
):
Button
;
70
74
public
function
withAriaLabel
(
string
$aria_label):
Button
;
75
79
public
function
getAriaLabel
(): string;
80
}
ILIAS\UI\Component\Hoverable
Definition:
Hoverable.php:30
Clickable
JavaScriptBindable
ILIAS\UI\Component\Button\Button\isActive
isActive()
Get to know if the button is activated.
ILIAS\UI\Component\Symbol\Symbol
This describes a symbol.
Definition:
Symbol.php:29
Standard
ILIAS\UI\Implementation\Component\HasHelpTopics
trait HasHelpTopics
Definition:
HasHelpTopics.php:26
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\JavaScriptBindable
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
Definition:
JavaScriptBindable.php:32
Component
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Engageable
ILIAS\UI\Component\Button
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
Bulky.php:21
Symbol
ILIAS\UI\Component\Button\Button\getAction
getAction()
Get the action of the button, i.e.
ILIAS\UI\Component\Button\Button\getLabel
getLabel()
Get the label on the button.
ILIAS\UI\Component\Button\Button\withSymbol
withSymbol(?Symbol $symbol)
Get a button like this with a symbol in its label.
ILIAS\UI\Component\Button\Button\withAriaLabel
withAriaLabel(string $aria_label)
Get a button like this, but with an additional/replaced aria-label.
ILIAS\UI\Component\Button\Button\withLabel
withLabel(string $label)
Get a button like this, but with an additional/replaced label.
ILIAS\UI\Component\Clickable
Definition:
Clickable.php:30
ILIAS\UI\Component\Button\Button\withUnavailableAction
withUnavailableAction(bool $flag=true)
Get a button like this, but action should be unavailable atm.
ILIAS\UI\Component\Button\Button\getAriaLabel
getAriaLabel()
Get the aria-label on the button.
Hoverable
HasHelpTopics
components
ILIAS
UI
src
Component
Button
Button.php
Generated on Thu Apr 3 2025 23:04:01 for ILIAS by
1.8.13 (using
Doxyfile
)