ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ILIAS\Container\InternalDomainService Class Reference
+ Collaboration diagram for ILIAS\Container\InternalDomainService:

Public Member Functions

 __construct (DI\Container $DIC, InternalRepoService $repo_service, InternalDataService $data_service)
 
 content ()
 
 page (\ilContainer $container, ?string $lang=null)
 
 classification (int $base_ref_id)
 

Protected Attributes

ILIAS Style Content DomainService $content_style_domain
 
InternalRepoService $repo_service
 
InternalDataService $data_service
 

Detailed Description

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 31 of file class.InternalDomainService.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Container\InternalDomainService::__construct ( DI\Container  $DIC,
InternalRepoService  $repo_service,
InternalDataService  $data_service 
)

Definition at line 39 of file class.InternalDomainService.php.

References ILIAS\Container\InternalDomainService\$data_service, ILIAS\Container\InternalDomainService\$repo_service, and ILIAS\Repository\initDomainServices().

43  {
44  $this->repo_service = $repo_service;
45  $this->data_service = $data_service;
46  $this->content_style_domain = $DIC->contentStyle()->domain();
47  $this->initDomainServices($DIC);
48  }
initDomainServices(\ILIAS\DI\Container $DIC)
global $DIC
Definition: feed.php:28
+ Here is the call graph for this function:

Member Function Documentation

◆ classification()

ILIAS\Container\InternalDomainService::classification ( int  $base_ref_id)

Definition at line 71 of file class.InternalDomainService.php.

71  : ClassificationManager
72  {
73  return new ClassificationManager(
74  $this->repo_service->classification($base_ref_id),
75  $base_ref_id
76  );
77  }

◆ content()

ILIAS\Container\InternalDomainService::content ( )

Definition at line 50 of file class.InternalDomainService.php.

Referenced by ILIAS\Container\Content\ItemPresentationManager\__construct(), and ILIAS\Container\Content\DomainService\__construct().

50  : Content\DomainService
51  {
52  return new Content\DomainService(
53  $this->repo_service,
54  $this->data_service,
55  $this
56  );
57  }
+ Here is the caller graph for this function:

◆ page()

ILIAS\Container\InternalDomainService::page ( \ilContainer  $container,
?string  $lang = null 
)

Definition at line 59 of file class.InternalDomainService.php.

References $lang.

62  : Page\PageManager {
63  return new PageManager(
64  $this,
65  $this->content_style_domain,
66  $container,
67  $lang
68  );
69  }
$container
Definition: wac.php:14
$lang
Definition: xapiexit.php:26

Field Documentation

◆ $content_style_domain

ILIAS Style Content DomainService ILIAS\Container\InternalDomainService::$content_style_domain
protected

Definition at line 35 of file class.InternalDomainService.php.

◆ $data_service

InternalDataService ILIAS\Container\InternalDomainService::$data_service
protected

◆ $repo_service

InternalRepoService ILIAS\Container\InternalDomainService::$repo_service
protected

The documentation for this class was generated from the following file: