ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.SkillInternalGUIService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Container\Skills;
22 
23 use ILIAS\HTTP;
24 use ILIAS\Refinery;
25 
30 {
31  protected HTTP\Services $http;
32  protected Refinery\Factory $refinery;
34 
35  public function __construct(
36  HTTP\Services $http,
37  Refinery\Factory $refinery,
38  ?array $query_params = null,
39  ?array $post_data = null
40  ) {
41  global $DIC;
42 
43  $this->http = $http;
44  $this->refinery = $refinery;
45 
46  $this->request = new SkillContainerGUIRequest(
47  $this->http,
48  $this->refinery,
49  $query_params,
50  $post_data
51  );
52  }
53 
59  public function request(): SkillContainerGUIRequest
60  {
61  return $this->request;
62  }
63 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(HTTP\Services $http, Refinery\Factory $refinery, ?array $query_params=null, ?array $post_data=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
Request wrapper for skill guis in container classes.
global $DIC
Definition: shib_login.php:22
Builds data types.
Definition: Factory.php:35