ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
class.StandardGUIRequest.php
Go to the documentation of this file.
1
<?php
2
19
namespace
ILIAS\Notes
;
20
21
use
ILIAS\Repository\BaseGUIRequest
;
22
23
class
StandardGUIRequest
24
{
25
use BaseGUIRequest;
26
27
public
function
__construct
(
28
\
ILIAS
\
HTTP
\
Services
$http
,
29
\
ILIAS
\
Refinery
\
Factory
$refinery
,
30
?array $passed_query_params =
null
,
31
?array $passed_post_data =
null
32
) {
33
$this->
initRequest
(
34
$http,
35
$refinery
,
36
$passed_query_params,
37
$passed_post_data
38
);
39
}
40
41
public
function
getRelatedObjId
():
int
42
{
43
return
$this->
int
(
"rel_obj"
);
44
}
45
46
public
function
getNoteType
():
int
47
{
48
return
$this->
int
(
"note_type"
);
49
}
50
51
public
function
getNoteId
():
int
52
{
53
return
$this->
int
(
"note_id"
);
54
}
55
56
public
function
getNoteIds
(): array
57
{
58
return
$this->
intArray
(
"note"
);
59
}
60
61
public
function
getNoteMess
(): string
62
{
63
return
$this->
str
(
"note_mess"
);
64
}
65
66
public
function
getNoteText
(): string
67
{
68
return
$this->
str
(
"note"
);
69
}
70
71
public
function
getNoteSubject
(): string
72
{
73
return
$this->
str
(
"sub_note"
);
74
}
75
76
public
function
getNoteLabel
(): string
77
{
78
return
$this->
str
(
"note_label"
);
79
}
80
81
public
function
getOnly
(): string
82
{
83
return
$this->
str
(
"notes_only"
);
84
}
85
86
public
function
getNewsId
():
int
87
{
88
return
$this->
int
(
"news_id"
);
89
}
90
91
public
function
getSortation
(): string
92
{
93
return
$this->
str
(
"sortation"
);
94
}
95
96
public
function
isFilterCommand
(): bool
97
{
98
return
($this->
str
(
"cmdFilter"
) !==
""
);
99
}
100
}
ILIAS\HTTP\Services
Class Services.
Definition:
Services.php:38
ILIAS\HTTP
Definition:
HTTP.php:26
ILIAS\Notes\StandardGUIRequest
Definition:
class.StandardGUIRequest.php:24
ILIAS\Notes\StandardGUIRequest\getNoteLabel
getNoteLabel()
Definition:
class.StandardGUIRequest.php:76
ILIAS\Notes\StandardGUIRequest\getNoteText
getNoteText()
Definition:
class.StandardGUIRequest.php:66
ILIAS\Notes\StandardGUIRequest\getSortation
getSortation()
Definition:
class.StandardGUIRequest.php:91
ILIAS\Notes\StandardGUIRequest\getNoteIds
getNoteIds()
Definition:
class.StandardGUIRequest.php:56
ILIAS\Notes\StandardGUIRequest\getRelatedObjId
getRelatedObjId()
Definition:
class.StandardGUIRequest.php:41
ILIAS\Notes\StandardGUIRequest\isFilterCommand
isFilterCommand()
Definition:
class.StandardGUIRequest.php:96
ILIAS\Notes\StandardGUIRequest\getNoteId
getNoteId()
Definition:
class.StandardGUIRequest.php:51
ILIAS\Notes\StandardGUIRequest\__construct
__construct(\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
Definition:
class.StandardGUIRequest.php:27
ILIAS\Notes\StandardGUIRequest\getOnly
getOnly()
Definition:
class.StandardGUIRequest.php:81
ILIAS\Notes\StandardGUIRequest\getNewsId
getNewsId()
Definition:
class.StandardGUIRequest.php:86
ILIAS\Notes\StandardGUIRequest\getNoteMess
getNoteMess()
Definition:
class.StandardGUIRequest.php:61
ILIAS\Notes\StandardGUIRequest\getNoteSubject
getNoteSubject()
Definition:
class.StandardGUIRequest.php:71
ILIAS\Notes\StandardGUIRequest\getNoteType
getNoteType()
Definition:
class.StandardGUIRequest.php:46
ILIAS\Refinery\Factory
Definition:
Factory.php:26
ILIAS\Refinery
Definition:
Refinery.php:24
ILIAS\Repository\BaseGUIRequest
trait BaseGUIRequest
Base gui request wrapper.
Definition:
trait.BaseGUIRequest.php:34
$http
$http
Definition:
deliver.php:30
ILIAS\Notes
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.Context.php:21
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Repository\intArray
intArray(string $key)
Definition:
trait.BaseGUIRequest.php:71
ILIAS\Repository\str
str(string $key)
Definition:
trait.BaseGUIRequest.php:106
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
ILIAS\UI\examples\Layout\Page\Standard\$refinery
$refinery
Definition:
ui.php:137
ILIAS
Interface Observer \BackgroundTasks Contains several chained tasks and infos about them.
Definition:
AccessControl.php:21
components
ILIAS
Notes
Note
class.StandardGUIRequest.php
Generated on Sat Oct 18 2025 23:02:17 for ILIAS by
1.9.4 (using
Doxyfile
)