19 declare(strict_types=1);
67 if (empty($target_classes)) {
68 throw new ilCtrlException(__METHOD__ .
" must be provided with a list of classes.");
75 foreach ($target_classes as $current_class) {
76 $current_cid = $this->structure->getClassCidByName($current_class);
79 if (
null === $current_cid) {
80 throw new ilCtrlException(
"Class '$current_class' was not found in the control structure, try `composer du` to read artifacts.");
86 throw new ilCtrlException(
"Class '$current_class' is not a child of '$previous_class'.");
90 $previous_class = $current_class;
95 $first_array_class = $target_classes[array_key_first($target_classes)];
96 if ($this->structure->isBaseClass($first_array_class)) {
103 if (
null === $related_class_path) {
104 throw new ilCtrlException(
"Class '$first_array_class' is not a baseclass and the current context doesn't have one either.");
ilCtrlException $exception
Class ilCtrlArrayClassPath.
Class ilCtrlAbstractPath.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
isClassParentOf(string $parent_class, string $child_class)
Returns whether the given target class is a parent of the other given class.
getPathToRelatedClassInContext(ilCtrlContextInterface $context, string $target_class)
Returns the path to a class within the given contexts current path that has a relation to the given t...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilCtrlStructureInterface $structure, ilCtrlContextInterface $context, array $target_classes)
ilCtrlArrayClassPath Constructor
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
ilCtrlContextInterface $context
appendCid(string $cid, ?string $path=null)
Helper function to add CIDs to a given path.
getCidPathByArray(array $target_classes)
Generates a cid path from the given class array.
ilCtrlStructureInterface $structure