ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
ItemInformation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
30 interface ItemInformation
31 {
32  public function isItemActive(isItem $item): bool;
33 
34  public function customPosition(isItem $item): isItem;
35 
36  public function customTranslationForUser(hasTitle $item): hasTitle;
37 
38  public function getParent(isItem $item): IdentificationInterface;
39 
40 }