ILIAS  trunk Revision v12.0_alpha-16-g3e876e53c80
ILIAS\Help\GuidedTour\InternalGUIService Class Reference
+ Collaboration diagram for ILIAS\Help\GuidedTour\InternalGUIService:

Public Member Functions

 __construct (Container $DIC, InternalDataService $data_service, InternalDomainService $domain_service)
 
 standardRequest ()
 
 guidedTourGUI ()
 
 objectGUI (int $obj_id)
 
 adminGUI ()
 
 stepTableBuilder (int $tour_id, object $parent_gui, string $parent_cmd)
 
 stepTableGUI (int $tour_id, object $parent_gui, string $parent_cmd)
 

Protected Attributes

InternalDataService $data_service
 
InternalDomainService $domain_service
 

Detailed Description

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

Constructor & Destructor Documentation

◆ __construct()

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

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

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

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

+ Here is the call graph for this function:

Member Function Documentation

◆ adminGUI()

ILIAS\Help\GuidedTour\InternalGUIService::adminGUI ( )

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

67 {
68 return new ilGuidedTourAdminGUI(
69 $this->data_service,
70 $this->domain_service,
71 $this
72 );
73 }
@ilCtrl_Calls ilGuidedTourAdminGUI: ilGuidedTourPageGUI, ilExportGUI, ilRepoStandardUploadHandlerGUI

◆ guidedTourGUI()

ILIAS\Help\GuidedTour\InternalGUIService::guidedTourGUI ( )

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

57 {
58 return new ilGuidedTourGUI();
59 }
@ilCtrl_Calls ilGuidedTourGUI: ilGuidedTourPageGUI

◆ objectGUI()

ILIAS\Help\GuidedTour\InternalGUIService::objectGUI ( int  $obj_id)

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

62 {
63 return new \ilObjGuidedTourGUI([], $obj_id, false);
64 }

◆ standardRequest()

ILIAS\Help\GuidedTour\InternalGUIService::standardRequest ( )

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

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

References ILIAS\FileDelivery\http().

+ Here is the call graph for this function:

◆ stepTableBuilder()

ILIAS\Help\GuidedTour\InternalGUIService::stepTableBuilder ( int  $tour_id,
object  $parent_gui,
string  $parent_cmd 
)

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

79 : StepTableBuilder {
80 return new StepTableBuilder(
81 $this->domain_service,
82 $this,
83 $tour_id,
84 $parent_gui,
85 $parent_cmd
86 );
87 }

◆ stepTableGUI()

ILIAS\Help\GuidedTour\InternalGUIService::stepTableGUI ( int  $tour_id,
object  $parent_gui,
string  $parent_cmd 
)

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

93 : TableAdapterGUI {
94 return $this->stepTableBuilder(
95 $tour_id,
96 $parent_gui,
97 $parent_cmd
98 )->getTable();
99 }
stepTableBuilder(int $tour_id, object $parent_gui, string $parent_cmd)

Field Documentation

◆ $data_service

InternalDataService ILIAS\Help\GuidedTour\InternalGUIService::$data_service
protected

◆ $domain_service

InternalDomainService ILIAS\Help\GuidedTour\InternalGUIService::$domain_service
protected

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