ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
Button.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
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
31
interface
Button
extends
Component
,
JavaScriptBindable
,
Clickable
,
Hoverable
,
Engageable
32
{
36
public
function
getLabel
(): string;
37
41
public
function
withLabel
(
string
$label):
Button
;
42
49
public
function
getAction
();
50
54
public
function
isActive
(): bool;
55
62
public
function
withUnavailableAction
():
Button
;
63
67
public
function
withAriaLabel
(
string
$aria_label):
Button
;
68
72
public
function
getAriaLabel
(): string;
73
}
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\Button\Button\withUnavailableAction
withUnavailableAction()
Get a button like this, but action should be unavailable atm.
ILIAS\UI\Component
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\UI\Implementation\Component\JavaScriptBindable
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
Definition:
JavaScriptBindable.php:32
Component
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
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\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\getAriaLabel
getAriaLabel()
Get the aria-label on the button.
Hoverable
src
UI
Component
Button
Button.php
Generated on Fri Apr 4 2025 22:03:14 for ILIAS by
1.8.13 (using
Doxyfile
)