ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
isToolItem.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 
4 
5 use Closure;
9 
15 interface isToolItem extends isItem, hasTitle, hasSymbol
16 {
17 
23  public function withInitiallyHidden(bool $initially_hidden) : isToolItem;
24 
25 
29  public function isInitiallyHidden() : bool;
30 
31 
37  public function withCloseCallback(Closure $close_callback) : isToolItem;
38 
39 
43  public function getCloseCallback() : Closure;
44 
45 
49  public function hasCloseCallback() : bool;
50 }
Interface hasSymbol Methods for Entries with Symbols.
Definition: hasSymbol.php:11