ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
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\Blog;
22 
29 use ILIAS\Notes;
30 
35 {
37 
38  protected static array $instance = [];
39  protected Container $dic;
40 
41  public function __construct(
43  protected InternalRepoService $repo,
44  protected InternalDataService $data
45  ) {
46  $this->initDomainServices($DIC);
47  $this->dic = $DIC;
48  }
49 
50  public function exercise(int $a_node_id): BlogExercise
51  {
52  return new BlogExercise(
53  $a_node_id,
54  $this->repositoryTree(),
55  $this->user()
56  );
57  }
58 
59  public function blogAccess(
60  $access_handler,
61  ?int $node_id,
62  int $id_type,
63  int $user_id,
64  int $owner
65  ): BlogAccess {
66  return new BlogAccess(
67  $access_handler,
68  $node_id,
69  $id_type,
70  $user_id,
71  $owner
72  );
73  }
74 
75  public function readingTime(): ReadingTimeManager
76  {
77  return new ReadingTimeManager();
78  }
79 
80  public function notes(): Notes\DomainService
81  {
82  return $this->dic->notes()->domain();
83  }
84 
85  public function blogSettings(): SettingsManager
86  {
87  return self::$instance["settings"] ??
88  self::$instance["settings"] = new SettingsManager(
89  $this->data,
90  $this->repo,
91  $this
92  );
93  }
94 
95 }
blogAccess( $access_handler, ?int $node_id, int $id_type, int $user_id, int $owner)
initDomainServices(\ILIAS\DI\Container $DIC)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
__construct(Container $DIC, protected InternalRepoService $repo, protected InternalDataService $data)