27 protected \ILIAS\HTTP\Services
$http;
28 protected \ILIAS\FileUpload\FileUpload
$upload;
33 \
ILIAS\FileUpload\FileUpload $upload
48 if ($this->
upload->hasUploads()) {
49 if (!$this->
upload->hasBeenProcessed()) {
52 $uploads = $this->
upload->getResults();
63 public function getUploadFilename(array $http_names,
int $index): ?
string 65 $uploaded_files = $this->
http->request()->getUploadedFiles();
67 while (($current_key = array_shift($http_names)) !== null) {
68 if (!
isset($uploaded_files[$current_key])) {
72 $uploaded_files = $uploaded_files[$current_key];
74 if (
isset($uploaded_files[$index]) && $http_names === []) {
76 $file = $uploaded_files[
$index];
77 $c = \Closure::bind(
static function (\GuzzleHttp\Psr7\UploadedFile $file): ?
string {
78 return $file->file ?? null;
95 return $this->
raw($key) !== null;
99 return $this->
raw(
'ref_id') !== null;
104 return $this->
int(
"ref_id");
109 return $this->
raw(
'q_id') !== null;
114 return $this->
int(
'q_id');
128 $no_transform = $this->
refinery->identity();
129 return $this->
get(
$key, $no_transform);
134 return $this->
http->request()->getParsedBody();
150 return $this->
intArray(
"category_ids");
Class ChatMainBarProvider .
ILIAS HTTP Services $http
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.
static http()
Fetches the global http state from ILIAS.
__construct(\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery, \ILIAS\FileUpload\FileUpload $upload)
trait BaseGUIRequest
Base gui request wrapper.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS FileUpload FileUpload $upload
Refinery Factory $refinery