forked from ILIAS-eLearning/ILIAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHoverable.php
48 lines (43 loc) · 1.33 KB
/
Hoverable.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
declare(strict_types=1);
/**
* This file is part of ILIAS, a powerful learning management system
* published by ILIAS open source e-Learning e.V.
*
* ILIAS is licensed with the GPL-3.0,
* see https://www.gnu.org/licenses/gpl-3.0.en.html
* You should have received a copy of said license along with the
* source code, too.
*
* If this is not the case or you just want to try ILIAS, you'll find
* us at:
* https://www.ilias.de
* https://github.com/ILIAS-eLearning
*
*********************************************************************/
namespace ILIAS\UI\Component;
/**
* Interface Hoverable
*
* Describes a component that can trigger signals of other components on hover.
*
* @package ILIAS\UI\Component
*/
interface Hoverable extends Triggerer
{
/**
* Get a component like this, triggering a signal of another component on hover.
* Note: Any previous signals registered on hover are replaced.
*
* @param Signal $signal A signal of another component
* @return static
*/
public function withOnHover(Signal $signal);
/**
* Get a component like this, triggering a signal of another component on hover.
* In contrast to withOnHover, the signal is appended to existing signals for the hover event.
*
* @return static
*/
public function appendOnHover(Signal $signal);
}