ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ILIAS\MediaObjects\InternalGUIService Class Reference
+ Collaboration diagram for ILIAS\MediaObjects\InternalGUIService:

Public Member Functions

 __construct (Container $DIC, InternalDataService $data_service, InternalDomainService $domain_service)
 
 standardRequest ()
 
 imageMap ()
 
 creation ()
 
 subTitles ()
 
 player ()
 
 video ()
 
 thumbs ()
 

Protected Attributes

InternalDataService $data_service
 
InternalDomainService $domain_service
 

Detailed Description

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

Definition at line 29 of file class.InternalGUIService.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\MediaObjects\InternalGUIService::__construct ( Container  $DIC,
InternalDataService  $data_service,
InternalDomainService  $domain_service 
)

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

40 {
41 $this->data_service = $data_service;
42 $this->domain_service = $domain_service;
43 $this->initGUIServices($DIC);
44 }
initGUIServices(\ILIAS\DI\Container $DIC)

References ILIAS\MediaObjects\InternalGUIService\$data_service, ILIAS\MediaObjects\InternalGUIService\$domain_service, and ILIAS\Repository\initGUIServices().

+ Here is the call graph for this function:

Member Function Documentation

◆ creation()

ILIAS\MediaObjects\InternalGUIService::creation ( )

Definition at line 62 of file class.InternalGUIService.php.

62 : Creation\GUIService
63 {
64 return new Creation\GUIService(
65 $this->domain_service,
66 $this
67 );
68 }

◆ imageMap()

ILIAS\MediaObjects\InternalGUIService::imageMap ( )

Definition at line 54 of file class.InternalGUIService.php.

54 : ImageMap\GUIService
55 {
56 return new ImageMap\GUIService(
57 $this->domain_service,
58 $this
59 );
60 }

◆ player()

ILIAS\MediaObjects\InternalGUIService::player ( )

Definition at line 78 of file class.InternalGUIService.php.

78 : Player\GUIService
79 {
80 return new Player\GUIService(
81 $this->domain_service,
82 $this
83 );
84 }

Referenced by ilMediaObjectsPlayerWrapperGUI\__construct().

+ Here is the caller graph for this function:

◆ standardRequest()

ILIAS\MediaObjects\InternalGUIService::standardRequest ( )

Definition at line 46 of file class.InternalGUIService.php.

46 : StandardGUIRequest
47 {
48 return new StandardGUIRequest(
49 $this->http(),
50 $this->domain_service->refinery()
51 );
52 }
static http()
Fetches the global http state from ILIAS.

References ILIAS\FileDelivery\http().

+ Here is the call graph for this function:

◆ subTitles()

ILIAS\MediaObjects\InternalGUIService::subTitles ( )

Definition at line 70 of file class.InternalGUIService.php.

70 : SubTitles\GUIService
71 {
72 return new SubTitles\GUIService(
73 $this->domain_service,
74 $this
75 );
76 }

◆ thumbs()

ILIAS\MediaObjects\InternalGUIService::thumbs ( )

Definition at line 94 of file class.InternalGUIService.php.

94 : Thumbs\ThumbsGUI
95 {
96 return new Thumbs\ThumbsGUI(
97 $this->domain_service,
98 $this
99 );
100 }

◆ video()

ILIAS\MediaObjects\InternalGUIService::video ( )

Definition at line 86 of file class.InternalGUIService.php.

86 : Video\GUIService
87 {
88 return new Video\GUIService(
89 $this->domain_service,
90 $this
91 );
92 }

Field Documentation

◆ $data_service

InternalDataService ILIAS\MediaObjects\InternalGUIService::$data_service
protected

◆ $domain_service

InternalDomainService ILIAS\MediaObjects\InternalGUIService::$domain_service
protected

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