ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
All Data Structures Namespaces Files Functions Variables Modules Pages
class.InternalRequestService.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
24 
26 {
27  use BaseGUIRequest;
28 
29  protected array $params;
30 
31  public function __construct(
34  ) {
35  $this->initRequest(
36  $http,
37  $refinery
38  );
39  }
40 
41  public function getRefId(): int
42  {
43  return $this->int("ref_id");
44  }
45 
46  public function getProcessId(): string
47  {
48  return $this->str("process_id");
49  }
50 
51  public function is_set(string $key): bool
52  {
53  return $this->str($key) !== "";
54  }
55 }
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initRequest(HTTP\Services $http, Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
Query params and post data parameters are used for testing.
string $key
Consumer key/client ID value.
Definition: System.php:193
trait BaseGUIRequest
Base gui request wrapper.
$http
Definition: raiseError.php:7
__construct(\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Refinery Factory $refinery