ILIAS  release_8 Revision v8.23
isToolItem.php
Go to the documentation of this file.
1 <?php
2 
3 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 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface hasSymbol Methods for Entries with Symbols.
Definition: hasSymbol.php:32