19 declare(strict_types=1);
46 ?array $passed_query_params =
null,
47 ?array $passed_post_data =
null 58 protected function int(
string $key):
int 60 $t = $this->
refinery->kindlyTo()->int();
61 return (
int) ($this->
get($key, $t) ?? 0);
68 protected function intArray(
string $key): array
73 $t = $this->
refinery->custom()->transformation(
74 static function (array $arr): array {
79 return (array) ($this->
get($key, $t) ?? []);
85 protected function str(
string $key): string
87 $t = $this->
refinery->kindlyTo()->string();
88 return \ilUtil::stripSlashes((
string) ($this->
get($key, $t) ??
""));
95 protected function strArray(
string $key): array
100 $t = $this->
refinery->custom()->transformation(
101 static function (array $arr): array {
104 static function ($v):
string {
105 return \ilUtil::stripSlashes((
string) $v);
111 return (array) ($this->
get($key, $t) ?? []);
119 $t = $this->
refinery->kindlyTo()->bool();
120 return (
bool) ($this->
get($key, $t) ??
false);
132 $t = $this->
refinery->custom()->transformation(
133 static function (array $arr): array {
138 return (array) ($this->
get($key, $t) ?? []);
146 if ($this->passed_query_params ===
null && $this->passed_post_data ===
null) {
147 $no_transform = $this->
refinery->identity();
148 $w = $this->
http->wrapper();
149 if ($w->post()->has($key)) {
150 return is_array($w->post()->retrieve($key, $no_transform));
152 if ($w->query()->has($key)) {
153 return is_array($w->query()->retrieve($key, $no_transform));
156 if (isset($this->passed_post_data[$key])) {
157 return is_array($this->passed_post_data[$key]);
159 if (isset($this->passed_query_params[$key])) {
160 return is_array($this->passed_query_params[$key]);
170 protected function get(
string $key, Refinery\Transformation $t)
172 if ($this->passed_query_params ===
null && $this->passed_post_data ===
null) {
173 $w = $this->
http->wrapper();
174 if ($w->post()->has($key)) {
175 return $w->post()->retrieve($key, $t);
177 if ($w->query()->has($key)) {
178 return $w->query()->retrieve($key, $t);
181 if (isset($this->passed_post_data[$key])) {
182 return $t->transform($this->passed_post_data[$key]);
184 if (isset($this->passed_query_params[$key])) {
185 return $t->transform($this->passed_query_params[$key]);
208 return $this->
str($key);
216 return $this->
intArray(
"interruptive_items");
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 $passed_query_params=null, ?array $passed_post_data=null)
Query params and post data parameters are used for testing.
intArray(string $key)
get integer array kindly
Skill gui global request wrapper.
Builds a Color from either hex- or rgb values.
Refinery Factory $refinery
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
boolArray(string $key)
get bool array kindly
getTableAction(string $key)
str(string $key)
get string parameter kindly
isArray(string $key)
Check if parameter is an array.
int(string $key)
get integer parameter kindly
array $passed_query_params
strArray(string $key)
get string array kindly
bool(string $key)
get bool parameter kindly