ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
class.SkillInternalGUIService.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 namespace ILIAS\Skill\Service;
23 
24 use ILIAS\HTTP;
25 use ILIAS\Refinery;
26 
33 {
34  protected HTTP\Services $http;
35  protected Refinery\Factory $refinery;
38 
39 
40  public function __construct(
41  HTTP\Services $http,
42  Refinery\Factory $refinery,
43  array $query_params = null,
44  array $post_data = null
45  ) {
46  global $DIC;
47 
48  $this->http = $http;
49  $this->refinery = $refinery;
50 
52  $this->http,
53  $this->refinery,
54  $query_params,
55  $post_data
56  );
57 
59  $this->http,
60  $this->refinery,
61  $query_params,
62  $post_data
63  );
64  }
65 
72  {
73  return $this->admin_request;
74  }
75 
77  {
79  }
80 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Request wrapper for guis in skill administration.
__construct(HTTP\Services $http, Refinery\Factory $refinery, array $query_params=null, array $post_data=null)
Builds a Color from either hex- or rgb values.
Definition: Factory.php:16
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static http()
Fetches the global http state from ILIAS.
global $DIC
Definition: shib_login.php:25
Request wrapper for personal skills guis.
Skill UI frontend presentation internal service class.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...