46 protected function str(
string $key): string
48 $t = $this->
refinery->kindlyTo()->string();
49 return \ilUtil::stripSlashes((
string) ($this->
get($key, $t) ??
""));
55 $t = $this->
refinery->kindlyTo()->int();
56 return (
int) ($this->
get(
$key, $t) ?? 0);
65 $t = $this->
refinery->custom()->transformation(
66 static function (array $arr): array {
70 static function ($k, $v): array {
71 return [$k, (
int) $v];
81 return (array) ($this->
get(
$key, $t) ?? []);
90 $t = $this->
refinery->custom()->transformation(
109 return (array) ($this->
get(
$key, $t) ?? []);
117 $no_transform = $this->
refinery->identity();
118 $w = $this->
http->wrapper();
119 if ($w->post()->has($key)) {
120 return is_array($w->post()->retrieve($key, $no_transform));
122 if ($w->query()->has($key)) {
123 return is_array($w->query()->retrieve($key, $no_transform));
131 protected function get(
string $key, Refinery\Transformation $t)
133 $w = $this->
http->wrapper();
134 if ($w->post()->has($key)) {
135 return $w->post()->retrieve($key, $t);
137 if ($w->query()->has($key)) {
138 return $w->query()->retrieve($key, $t);
146 $badge_ids = $this->
intArray(
"badge_id");
147 if (count($badge_ids) === 0 && $this->
int(
"badge_id") > 0) {
148 $badge_ids = [$this->
int(
"badge_id")];
155 return $this->
int(
"bid");
160 return $this->
int(
"id");
171 return $this->
str(
"type");
176 return $this->
str(
"tgt");
181 return $this->
int(
"tid");
186 return $this->
int(
"pid");
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Refinery Factory $refinery
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)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
isArray(string $key)
Check if parameter is an array.
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...
static http()
Fetches the global http state from ILIAS.
__construct(HTTP\Services $http, Refinery\Factory $refinery)