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
Close.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 2016 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
5
namespace
ILIAS\UI\Implementation\Component\Button
;
6
7
use
ILIAS\UI\Component
as
C
;
8
use
ILIAS\UI\Component\Signal
;
9
use
ILIAS\UI\Implementation\Component\ComponentHelper
;
10
use
ILIAS\UI\Implementation\Component\JavaScriptBindable
;
11
use
ILIAS\UI\Implementation\Component\Triggerer
;
12
13
class
Close
implements
C\Button\Close
14
{
15
use
JavaScriptBindable
;
16
use
ComponentHelper
;
17
use
Triggerer
;
18
22
public
function
withOnClick
(
Signal
$signal)
23
{
24
$this->action = null;
25
return
$this->
withTriggeredSignal
($signal,
'click'
);
26
}
27
31
public
function
appendOnClick
(
Signal
$signal)
32
{
33
return
$this->
appendTriggeredSignal
($signal,
'click'
);
34
}
35
}
ILIAS\UI\Implementation\Component\Button\Close\appendOnClick
appendOnClick(Signal $signal)
Definition:
Close.php:31
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\JavaScriptBindable
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
Definition:
JavaScriptBindable.php:12
ILIAS\UI\Implementation\Component\ComponentHelper
trait ComponentHelper
Provides common functionality for component implementations.
Definition:
ComponentHelper.php:13
ILIAS\UI\Implementation\Component\Button\Close
Definition:
Close.php:13
ILIAS\UI\Implementation\Component\Triggerer
trait Triggerer
Definition:
Triggerer.php:17
ILIAS\UI\Implementation\Component\Button
Definition:
Bulky.php:6
ILIAS\UI\Implementation\Component\Button\Close\withOnClick
withOnClick(Signal $signal)
Definition:
Close.php:22
ILIAS\UI\Implementation\Component\appendTriggeredSignal
appendTriggeredSignal(Component\Signal $signal, $event)
Append a triggered signal to other signals of the same event.
Definition:
Triggerer.php:31
ILIAS\UI\Component\Signal
Definition:
Signal.php:13
Signal
ILIAS\UI\Implementation\Component\withTriggeredSignal
withTriggeredSignal(Component\Signal $signal, $event)
Add a triggered signal, replacing any other signals registered on the same event. ...
Definition:
Triggerer.php:48
src
UI
Implementation
Component
Button
Close.php
Generated on Sun Apr 6 2025 20:01:39 for ILIAS by
1.8.13 (using
Doxyfile
)