ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
class.InternalGUIService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Category;
22 
23 use ILIAS\DI;
26 
31 {
33 
36 
37  public function __construct(
39  InternalDataService $data_service,
40  InternalDomainService $domain_service
41  ) {
42  $this->data_service = $data_service;
43  $this->domain_service = $domain_service;
44  $this->initGUIServices($DIC);
45  }
46 
48  {
49  return new StandardGUIRequest(
50  $this->http(),
51  $this->domain_service->refinery()
52  );
53  }
54 
55  public function assignedRoleTableBuilder(
56  int $ref_id,
57  int $managed_user_id,
58  int $managing_user_id,
59  object $parent_gui,
60  string $parent_cmd
61  ): AssignRoleTableBuilder {
62  return new AssignRoleTableBuilder(
63  $this->domain_service,
64  $this,
65  $ref_id,
66  $managed_user_id,
67  $managing_user_id,
68  $parent_gui,
69  $parent_cmd
70  );
71  }
72 }
initGUIServices(\ILIAS\DI\Container $DIC)
__construct(DI\Container $DIC, InternalDataService $data_service, InternalDomainService $domain_service)
assignedRoleTableBuilder(int $ref_id, int $managed_user_id, int $managing_user_id, object $parent_gui, string $parent_cmd)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Container.php:19
$ref_id
Definition: ltiauth.php:65
static http()
Fetches the global http state from ILIAS.
Class HTTPServicesTest.
global $DIC
Definition: shib_login.php:26
Repository internal data service.