ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
isChild.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
21 
23 
28 interface isChild extends isItem
29 {
36  public function withParent(IdentificationInterface $identification): isItem;
37 
41  public function hasParent(): bool;
42 
46  public function getParent(): IdentificationInterface;
47 
52  public function overrideParent(IdentificationInterface $identification): isChild;
53 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
withParent(IdentificationInterface $identification)
As a developer, you provide the standard-parent Item while creating your items.
overrideParent(IdentificationInterface $identification)