ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BaseNavigatorInterface.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
26 {
30  public function nextStep(): ?BaseNavigatorInterface;
31 
32  public function currentStep(): ?StepInterface;
33 
34  public function previousStep(): ?BaseNavigatorInterface;
35 
36  public function hasNextStep(): bool;
37 
38  public function hasPreviousStep(): bool;
39 
43  public function hasElements(): bool;
44 }
hasElements()
Should return true if the navigator contains at least one element at the current step.
nextStep()
Returns null if there is no next step.