ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
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 
22 
29 
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 }
isActive()
Get to know if the button is activated.
This describes a symbol.
Definition: Symbol.php:29
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Bulky.php:21
getAction()
Get the action of the button, i.e.
getLabel()
Get the label on the button.
withSymbol(?Symbol $symbol)
Get a button like this with a symbol in its label.
withAriaLabel(string $aria_label)
Get a button like this, but with an additional/replaced aria-label.
withLabel(string $label)
Get a button like this, but with an additional/replaced label.
withUnavailableAction(bool $flag=true)
Get a button like this, but action should be unavailable atm.
getAriaLabel()
Get the aria-label on the button.