ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
hasSymbol.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 use Closure;
26 
31 interface hasSymbol extends isItem
32 {
37  public function withSymbol(Symbol $symbol) : hasSymbol;
38 
42  public function getSymbol() : Symbol;
43 
47  public function hasSymbol() : bool;
48 
53  public function addSymbolDecorator(Closure $symbol_decorator) : isGlobalScreenItem;
54 
58  public function getSymbolDecorator() : ?Closure;
59 }
Interface isGlobalScreenItem.
This describes a symbol.
Definition: Symbol.php:11