ILIAS  trunk Revision v11.0_alpha-1866-gfa368f7776e
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\Survey\Editing;
22 
25 
30 {
32  protected \ilObjectService $object_service;
34 
35  public function __construct(
36  InternalGUIService $ui_service,
37  InternalDomainService $domain_service
38  ) {
39  $this->ui_service = $ui_service;
40  $this->domain_service = $domain_service;
41  }
42 
43  public function request(): EditingGUIRequest
44  {
45  return new EditingGUIRequest(
46  $this->ui_service->http(),
47  $this->domain_service->refinery()
48  );
49  }
50 }
InternalDomainService $domain_service
__construct(InternalGUIService $ui_service, InternalDomainService $domain_service)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...