ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.InternalDomainService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\LearningModule;
22 
25 use ilLMTree;
27 
29 {
31 
32  protected static array $instance = [];
33 
34  public function __construct(
36  protected InternalRepoService $repo,
37  protected InternalDataService $data
38  ) {
39  $this->initDomainServices($DIC);
40  }
41 
42  public function lmTree(int $lm_id): \ilLMTree
43  {
44  return self::$instance["tree"][$lm_id] ??= new \ilLMTree($lm_id);
45  }
46 
47  public function subObjectRetrieval(
48  int $lm_id,
49  string $type,
50  int $current_node,
51  string $lang
52  ): SubObjectRetrieval {
53  return self::$instance["sub_obj_retrieval"][$lm_id][$type][$current_node] ??=
54  new SubObjectRetrieval(
55  $this->lmTree($lm_id),
56  $type,
57  $current_node,
58  $lang
59  );
60  }
61 
62 }
initDomainServices(\ILIAS\DI\Container $DIC)
Learning modules internal repo service.
subObjectRetrieval(int $lm_id, string $type, int $current_node, string $lang)
Learning modules internal data service.
global $DIC
Definition: shib_login.php:22
__construct(Container $DIC, protected InternalRepoService $repo, protected InternalDataService $data)
$lang
Definition: xapiexit.php:25