ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
class.StandardGUIRequest.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\InfoScreen
;
22
23
use
ILIAS\Repository
;
24
use
ILIAS\HTTP\Services
;
25
use
ILIAS\Refinery\Factory
;
26
27
class
StandardGUIRequest
28
{
29
use
Repository\BaseGUIRequest
;
30
31
public
function
__construct
(
32
Services
$http
,
33
Factory
$refinery
,
34
?array
$passed_query_params
= null,
35
?array
$passed_post_data
= null
36
) {
37
$this->
initRequest
(
38
$http,
39
$refinery,
40
$passed_query_params
,
41
$passed_post_data
42
);
43
}
44
45
public
function
getUserId
():
int
46
{
47
return
$this->
int
(
"user_id"
);
48
}
49
50
public
function
getLPEdit
():
int
51
{
52
return
$this->
int
(
"lp_edit"
);
53
}
54
}
ILIAS\Repository
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\Repository\$passed_query_params
array $passed_query_params
Definition:
trait.BaseGUIRequest.php:37
Services
ILIAS\Repository\initRequest
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.
Definition:
trait.BaseGUIRequest.php:48
Factory
ILIAS\InfoScreen\StandardGUIRequest\getLPEdit
getLPEdit()
Definition:
class.StandardGUIRequest.php:50
ILIAS\InfoScreen\StandardGUIRequest\getUserId
getUserId()
Definition:
class.StandardGUIRequest.php:45
ILIAS\Repository\$passed_post_data
array $passed_post_data
Definition:
trait.BaseGUIRequest.php:38
ILIAS\Repository\BaseGUIRequest
trait BaseGUIRequest
Base gui request wrapper.
Definition:
trait.BaseGUIRequest.php:34
$http
$http
Definition:
raiseError.php:7
ILIAS\InfoScreen\StandardGUIRequest
Definition:
class.StandardGUIRequest.php:27
ILIAS\InfoScreen\StandardGUIRequest\__construct
__construct(Services $http, Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
Definition:
class.StandardGUIRequest.php:31
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\InfoScreen
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.StandardGUIRequest.php:21
ILIAS\Repository\$refinery
Refinery Factory $refinery
Definition:
trait.BaseGUIRequest.php:36
Services
InfoScreen
classes
class.StandardGUIRequest.php
Generated on Wed Sep 10 2025 14:10:30 for ILIAS by
1.8.13 (using
Doxyfile
)