ILIAS  trunk Revision v11.0_alpha-1811-gd2d5443e411
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
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)
 
 metadata ()
 

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 32 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 40 of file class.InternalDomainService.php.

References ILIAS\Repository\initDomainServices().

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  }
initDomainServices(\ILIAS\DI\Container $DIC)
global $DIC
Definition: shib_login.php:22
+ Here is the call graph for this function:

Member Function Documentation

◆ classification()

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

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

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

◆ content()

ILIAS\Container\InternalDomainService::content ( )

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

51  : Content\DomainService
52  {
53  return new Content\DomainService(
54  $this->repo_service,
55  $this->data_service,
56  $this
57  );
58  }

◆ metadata()

ILIAS\Container\InternalDomainService::metadata ( )

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

References ILIAS\Repository\learningObjectMetadata().

80  : MetadataManager
81  {
82  return new MetadataManager($this->learningObjectMetadata());
83  }
+ Here is the call graph for this function:

◆ page()

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

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

References $lang.

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

Field Documentation

◆ $content_style_domain

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

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

◆ $data_service

InternalDataService ILIAS\Container\InternalDomainService::$data_service
protected

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

◆ $repo_service

InternalRepoService ILIAS\Container\InternalDomainService::$repo_service
protected

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


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