ILIAS  trunk Revision v11.0_alpha-1749-g1a06bdef097
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
GUIService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
28 {
29  public function __construct(
30  protected InternalDataService $data,
31  protected InternalDomainService $domain,
32  protected InternalGUIService $gui
33  ) {
34  }
35 
36  public function settingsGUI(int $obj_id, int $ref_id): SettingsGUI
37  {
38  return new SettingsGUI(
39  $this->data,
40  $this->domain,
41  $this->gui,
42  $obj_id,
43  $ref_id
44  );
45  }
46 
47 }
settingsGUI(int $obj_id, int $ref_id)
Definition: GUIService.php:36
$ref_id
Definition: ltiauth.php:65
Survey question pool internal data service.
__construct(protected InternalDataService $data, protected InternalDomainService $domain, protected InternalGUIService $gui)
Definition: GUIService.php:29