ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
isToolItem.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use Closure;
27 
32 interface isToolItem extends isItem, hasTitle, hasSymbol
33 {
38  public function withInitiallyHidden(bool $initially_hidden): isToolItem;
39 
43  public function isInitiallyHidden(): bool;
44 
49  public function withCloseCallback(Closure $close_callback): isToolItem;
50 
54  public function getCloseCallback(): Closure;
55 
59  public function hasCloseCallback(): bool;
60 }