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

Public Member Functions

 __construct (Container $DIC, InternalDataService $data_service, InternalDomainService $domain_service)
 
 preferences ()
 
 process ()
 
 objects ()
 
 bookingHelp (\ilObjBookingPool $pool)
 
 standardRequest ()
 
 settings ()
 

Protected Attributes

InternalDataService $data_service
 
InternalDomainService $domain_service
 

Static Protected Attributes

static array $instances = []
 

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\BookingManager\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\BookingManager\InternalGUIService\$data_service, ILIAS\BookingManager\InternalGUIService\$domain_service, and ILIAS\Repository\initGUIServices().

+ Here is the call graph for this function:

Member Function Documentation

◆ bookingHelp()

ILIAS\BookingManager\InternalGUIService::bookingHelp ( \ilObjBookingPool  $pool)

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

74 {
75 return new \ilBookingHelpAdapter($pool, $this->help());
76 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...

References ILIAS\Repository\help().

Referenced by ILIAS\BookingManager\BookingProcess\ProcessUtilGUI\__construct().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ objects()

ILIAS\BookingManager\InternalGUIService::objects ( )

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

64 : Objects\GUIService
65 {
66 return new Objects\GUIService(
67 $this->data_service,
68 $this->domain_service,
69 $this
70 );
71 }

◆ preferences()

ILIAS\BookingManager\InternalGUIService::preferences ( )

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

46 : Preferences\GUIService
47 {
48 return new Preferences\GUIService(
49 $this->data_service,
50 $this->domain_service,
51 $this
52 );
53 }

◆ process()

ILIAS\BookingManager\InternalGUIService::process ( )

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

55 : BookingProcess\GUIService
56 {
57 return new BookingProcess\GUIService(
58 $this->data_service,
59 $this->domain_service,
60 $this
61 );
62 }

◆ settings()

ILIAS\BookingManager\InternalGUIService::settings ( )

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

86 : Settings\GUIService
87 {
88 return self::$instances["settings"] ??= new Settings\GUIService(
89 $this->data_service,
90 $this->domain_service,
91 $this
92 );
93 }

◆ standardRequest()

ILIAS\BookingManager\InternalGUIService::standardRequest ( )

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

78 : StandardGUIRequest
79 {
80 return new StandardGUIRequest(
81 $this->http(),
82 $this->domain_service->refinery()
83 );
84 }
static http()
Fetches the global http state from ILIAS.

References ILIAS\FileDelivery\http().

+ Here is the call graph for this function:

Field Documentation

◆ $data_service

InternalDataService ILIAS\BookingManager\InternalGUIService::$data_service
protected

◆ $domain_service

InternalDomainService ILIAS\BookingManager\InternalGUIService::$domain_service
protected

◆ $instances

array ILIAS\BookingManager\InternalGUIService::$instances = []
staticprotected

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


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