ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
PathUtilitiesFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ILIAS\MetaData\Paths\Services\Services as PathServices;
25 
27 {
28  protected PathServices $path_services;
29 
30  public function __construct(
31  PathServices $path_services,
32  ) {
33  $this->path_services = $path_services;
34  }
35 
36  public function pathConditionChecker(
37  PathConditionsCollectionInterface $path_conditions_collection
39  return new PathConditionsChecker(
40  $path_conditions_collection,
41  $this->path_services->navigatorFactory()
42  );
43  }
44 
45  public function pathConditionsCollection(
48  return new PathConditionsCollection(
49  $this->path_services->pathFactory(),
50  $path
51  );
52  }
53 }
$path
Definition: ltiservices.php:29
pathConditionChecker(PathConditionsCollectionInterface $path_conditions_collection)