ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilCtrlNullPath.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /* Copyright (c) 2021 Thibeau Fuhrer <thf@studer-raimann.ch> Extended GPL, see docs/LICENSE */
6 
13 {
17  public function getCidPath(): ?string
18  {
19  return null;
20  }
21 
25  public function getCurrentCid(): ?string
26  {
27  return null;
28  }
29 
33  public function getNextCid(string $current_class): ?string
34  {
35  return null;
36  }
37 
41  public function getCidPaths(int $order = SORT_DESC): array
42  {
43  return [];
44  }
45 
49  public function getCidArray(int $order = SORT_DESC): array
50  {
51  return [];
52  }
53 
57  public function getBaseClass(): ?string
58  {
59  return null;
60  }
61 
65  public function getException(): ?ilCtrlException
66  {
67  return null;
68  }
69 }
getNextCid(string $current_class)
getCidArray(int $order=SORT_DESC)
getCidPaths(int $order=SORT_DESC)
Class ilCtrlNullPath.
ilCtrl exceptions
Interface ilCtrlPathInterface is responsible for holding and manipulating a valid ilCtrl class-path (...