ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
DependantGroupProviding.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2018 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
6 
10 interface DependantGroupProviding extends Input
11 {
12 
21  public function withDependantGroup(DependantGroup $dependant_group) : Input;
22 
23 
29  public function getDependantGroup();
30 }
This describes commonalities between all inputs.
Definition: Input.php:30
withDependantGroup(DependantGroup $dependant_group)
Creates an input like this but with a dependant group attached which appears if the control is clicke...
getDependantGroup()
Returns the attached DependantGroup or null if none is attached.
This describes dependant group inputs.
These are the commonalities for inputs tirggering a dependant group.