ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
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\Container;
22 
23 use ILIAS\DI;
28 
33 {
35 
36  protected \ILIAS\Style\Content\DomainService $content_style_domain;
39 
40  public function __construct(
42  InternalRepoService $repo_service,
43  InternalDataService $data_service
44  ) {
45  $this->repo_service = $repo_service;
46  $this->data_service = $data_service;
47  $this->content_style_domain = $DIC->contentStyle()->domain();
48  $this->initDomainServices($DIC);
49  }
50 
51  public function content(): Content\DomainService
52  {
53  return new Content\DomainService(
54  $this->repo_service,
55  $this->data_service,
56  $this
57  );
58  }
59 
60  public function page(
62  ?string $lang = null
63  ): Page\PageManager {
64  return new PageManager(
65  $this,
66  $this->content_style_domain,
67  $container,
68  $lang
69  );
70  }
71 
72  public function classification(int $base_ref_id): ClassificationManager
73  {
74  return new ClassificationManager(
75  $this->repo_service->classification($base_ref_id),
76  $base_ref_id
77  );
78  }
79 
80  public function metadata(): MetadataManager
81  {
82  return new MetadataManager($this->learningObjectMetadata());
83  }
84 }
ILIAS Style Content DomainService $content_style_domain
__construct(DI\Container $DIC, InternalRepoService $repo_service, InternalDataService $data_service)
initDomainServices(\ILIAS\DI\Container $DIC)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Container.php:19
Repository internal data service.
$container
Definition: wac.php:36
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class HTTPServicesTest.
global $DIC
Definition: shib_login.php:22
page(\ilContainer $container, ?string $lang=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$lang
Definition: xapiexit.php:25
Repository internal repo service.