ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables 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 }
Interface hasSymbol Methods for Entries with Symbols.
Definition: hasSymbol.php:32