ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
isToolItem.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
21 
22 use Closure;
26 
31 interface isToolItem extends isItem, hasTitle, hasSymbol
32 {
37  public function withInitiallyHidden(bool $initially_hidden): isToolItem;
38 
42  public function isInitiallyHidden(): bool;
43 
48  public function withCloseCallback(Closure $close_callback): isToolItem;
49 
53  public function getCloseCallback(): Closure;
54 
58  public function hasCloseCallback(): bool;
59 }