ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.SkillInternalGUIService.php
Go to the documentation of this file.
1 <?php
2 
20 namespace ILIAS\Skill\Service;
21 
22 use ILIAS\HTTP;
23 use ILIAS\Refinery;
24 
31 {
32  protected HTTP\Services $http;
33  protected Refinery\Factory $refinery;
36 
37 
38  public function __construct(
39  HTTP\Services $http,
40  Refinery\Factory $refinery,
41  array $query_params = null,
42  array $post_data = null
43  ) {
44  global $DIC;
45 
46  $this->http = $http;
47  $this->refinery = $refinery;
48 
50  $this->http,
51  $this->refinery,
52  $query_params,
53  $post_data
54  );
55 
57  $this->http,
58  $this->refinery,
59  $query_params,
60  $post_data
61  );
62  }
63 
70  {
71  return $this->admin_request;
72  }
73 
75  {
77  }
78 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: ByTrying.php:21
Request wrapper for guis in skill administration.
__construct(HTTP\Services $http, Refinery\Factory $refinery, array $query_params=null, array $post_data=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: feed.php:28
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.
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...