ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.GUIService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\COPage\PC;
22 
25 
30 {
33 
34  public function __construct(
35  InternalDomainService $domain_service,
36  InternalGUIService $gui_service
37  ) {
38  $this->gui_service = $gui_service;
39  $this->domain_service = $domain_service;
40  }
41 
42  public function editRequest(): EditGUIRequest
43  {
44  return new EditGUIRequest(
45  $this->gui_service->http(),
46  $this->domain_service->refinery()
47  );
48  }
49 
50  public function interactiveImage(): InteractiveImage\GUIService
51  {
52  return new InteractiveImage\GUIService(
53  $this->domain_service,
54  $this->gui_service
55  );
56  }
57 }
InternalGUIService $gui_service
InternalDomainService $domain_service
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Page component editing request.
__construct(InternalDomainService $domain_service, InternalGUIService $gui_service)