ILIAS  release_8 Revision v8.24
class.ilCtrlNullPath.php
Go to the documentation of this file.
1<?php
2
3declare(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}
ilCtrl exceptions
Class ilCtrlNullPath.
getCidArray(int $order=SORT_DESC)
@inheritDoc
getCurrentCid()
@inheritDoc
getBaseClass()
@inheritDoc
getException()
@inheritDoc
getCidPath()
@inheritDoc
getNextCid(string $current_class)
@inheritDoc
getCidPaths(int $order=SORT_DESC)
@inheritDoc
Interface ilCtrlPathInterface is responsible for holding and manipulating a valid ilCtrl class-path (...