ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest Class Reference
+ Collaboration diagram for ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest:

Public Member Functions

 __construct (\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
 
 getRefId ()
 
 getObjId ()
 
 getObjType ()
 
 getTranslation ()
 
 getFocusId ()
 
 getFocusReturn ()
 
 getBackPage ()
 
 getSearchString ()
 
 getFrame ()
 
 getFromPage ()
 
 getMobId ()
 
 getEmbedMode ()
 
 getCmd ()
 
 getPgId ()
 
 getPgType ()
 
 getNotificationSwitch ()
 
 getType ()
 
 getUrl ()
 
 getRating ()
 
 getItems ()
 
 getSelectedType ()
 
 getSelectedObjIds ()
 
 getQuestionPageId ()
 
 getQuestionId ()
 

Detailed Description

Definition at line 23 of file class.PresentationGUIRequest.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::__construct ( \ILIAS\HTTP\Services  $http,
\ILIAS\Refinery\Factory  $refinery,
?array  $passed_query_params = null,
?array  $passed_post_data = null 
)

Definition at line 27 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\initRequest().

32  {
33  $this->initRequest(
34  $http,
35  $refinery,
36  $passed_query_params,
37  $passed_post_data
38  );
39  }
$http
Definition: deliver.php:30
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.
+ Here is the call graph for this function:

Member Function Documentation

◆ getBackPage()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getBackPage ( )

Definition at line 71 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\str().

71  : string
72  {
73  return $this->str("back_pg");
74  }
+ Here is the call graph for this function:

◆ getCmd()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getCmd ( )

Definition at line 101 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\isArray(), and ILIAS\Repository\str().

101  : string
102  {
103  if (!$this->isArray("cmd")) {
104  return $this->str("cmd");
105  }
106  return "";
107  }
isArray(string $key)
Check if parameter is an array.
+ Here is the call graph for this function:

◆ getEmbedMode()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getEmbedMode ( )

Definition at line 96 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\int().

96  : int
97  {
98  return $this->int("embed_mode");
99  }
+ Here is the call graph for this function:

◆ getFocusId()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getFocusId ( )

Definition at line 61 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\int().

61  : int
62  {
63  return $this->int("focus_id");
64  }
+ Here is the call graph for this function:

◆ getFocusReturn()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getFocusReturn ( )

Definition at line 66 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\int().

66  : int
67  {
68  return $this->int("focus_return");
69  }
+ Here is the call graph for this function:

◆ getFrame()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getFrame ( )

Definition at line 81 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\str().

81  : string
82  {
83  return $this->str("frame");
84  }
+ Here is the call graph for this function:

◆ getFromPage()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getFromPage ( )

Definition at line 86 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\str().

86  : string
87  {
88  return $this->str("from_page");
89  }
+ Here is the call graph for this function:

◆ getItems()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getItems ( )

Definition at line 139 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\strArray().

139  : array
140  {
141  return $this->strArray("item");
142  }
+ Here is the call graph for this function:

◆ getMobId()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getMobId ( )

Definition at line 91 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\int().

91  : int
92  {
93  return $this->int("mob_id");
94  }
+ Here is the call graph for this function:

◆ getNotificationSwitch()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getNotificationSwitch ( )

Definition at line 119 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\int().

119  : int
120  {
121  return $this->int("ntf");
122  }
+ Here is the call graph for this function:

◆ getObjId()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getObjId ( )

Definition at line 46 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\int().

46  : int
47  {
48  return $this->int("obj_id");
49  }
+ Here is the call graph for this function:

◆ getObjType()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getObjType ( )

Definition at line 51 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\str().

51  : string
52  {
53  return $this->str("obj_type");
54  }
+ Here is the call graph for this function:

◆ getPgId()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getPgId ( )

Definition at line 109 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\int().

109  : int
110  {
111  return $this->int("pg_id");
112  }
+ Here is the call graph for this function:

◆ getPgType()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getPgType ( )

Definition at line 114 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\str().

114  : string
115  {
116  return $this->str("pg_type");
117  }
+ Here is the call graph for this function:

◆ getQuestionId()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getQuestionId ( )

Definition at line 159 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\int().

159  : int
160  {
161  return $this->int("id");
162  }
+ Here is the call graph for this function:

◆ getQuestionPageId()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getQuestionPageId ( )

Definition at line 154 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\int().

154  : int
155  {
156  return $this->int("page_id");
157  }
+ Here is the call graph for this function:

◆ getRating()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getRating ( )

Definition at line 134 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\int().

134  : int
135  {
136  return $this->int("rating");
137  }
+ Here is the call graph for this function:

◆ getRefId()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getRefId ( )

Definition at line 41 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\int().

41  : int
42  {
43  return $this->int("ref_id");
44  }
+ Here is the call graph for this function:

◆ getSearchString()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getSearchString ( )

Definition at line 76 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\str().

76  : string
77  {
78  return $this->str("srcstring");
79  }
+ Here is the call graph for this function:

◆ getSelectedObjIds()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getSelectedObjIds ( )

Definition at line 149 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\intArray().

149  : array
150  {
151  return $this->intArray("obj_id");
152  }
+ Here is the call graph for this function:

◆ getSelectedType()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getSelectedType ( )

Definition at line 144 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\str().

144  : string
145  {
146  return $this->str("sel_type");
147  }
+ Here is the call graph for this function:

◆ getTranslation()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getTranslation ( )

Definition at line 56 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\str().

56  : string
57  {
58  return $this->str("transl");
59  }
+ Here is the call graph for this function:

◆ getType()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getType ( )

Definition at line 124 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\str().

124  : string
125  {
126  return $this->str("type");
127  }
+ Here is the call graph for this function:

◆ getUrl()

ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest::getUrl ( )

Definition at line 129 of file class.PresentationGUIRequest.php.

References ILIAS\Repository\str().

129  : string
130  {
131  return $this->str("url");
132  }
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: