ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ILIAS\User\StandardGUIRequest Class Reference
+ Collaboration diagram for ILIAS\User\StandardGUIRequest:

Public Member Functions

 __construct (\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
 
 getRefId ()
 
 getLetter ()
 
 getBaseClass ()
 
 getSearch ()
 
 getJumpToUser ()
 
 getFieldId ()
 
 getFetchAll ()
 
 getTerm ()
 
 getStartingPointId ()
 
 getRoleId ()
 
 getActionActive ()
 
 getIds ()
 
 getChecked ()
 
 getFieldType ()
 
 getFields ()
 
 getSelectedAction ()
 
 getFrSearch ()
 
 getSelect ()
 
 getFiles ()
 
 getExportType ()
 
 getMailSalutation (string $gender, string $lang)
 
 getMailSubject (string $lang)
 
 getMailBody (string $lang)
 
 getMailAttDelete (string $lang)
 
 getSelectAll ()
 
 getRoleIds ()
 
 getPostedRoleIds ()
 
 getFilteredRoles ()
 
 getSendMail ()
 
 getPassword ()
 
 getUDFs ()
 
 getPositions ()
 
 getCurrentPassword ()
 
 getNewPassword ()
 

Detailed Description

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

Constructor & Destructor Documentation

◆ __construct()

ILIAS\User\StandardGUIRequest::__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.StandardGUIRequest.php.

References ILIAS\Repository\$passed_post_data, ILIAS\Repository\$passed_query_params, and ILIAS\Repository\initRequest().

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

Member Function Documentation

◆ getActionActive()

ILIAS\User\StandardGUIRequest::getActionActive ( )

Definition at line 99 of file class.StandardGUIRequest.php.

References ILIAS\Repository\intArray().

99  : array // Missing array type.
100  {
101  return $this->intArray("active");
102  }
+ Here is the call graph for this function:

◆ getBaseClass()

ILIAS\User\StandardGUIRequest::getBaseClass ( )

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

References ILIAS\Repository\str().

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

◆ getChecked()

ILIAS\User\StandardGUIRequest::getChecked ( )

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

References ILIAS\Repository\intArray().

109  : array // Missing array type.
110  {
111  return $this->intArray("chb");
112  }
+ Here is the call graph for this function:

◆ getCurrentPassword()

ILIAS\User\StandardGUIRequest::getCurrentPassword ( )

Definition at line 209 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

209  : string
210  {
211  return $this->str("current_password");
212  }
+ Here is the call graph for this function:

◆ getExportType()

ILIAS\User\StandardGUIRequest::getExportType ( )

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

References ILIAS\Repository\str().

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

◆ getFetchAll()

ILIAS\User\StandardGUIRequest::getFetchAll ( )

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

References ILIAS\Repository\int().

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

◆ getFieldId()

ILIAS\User\StandardGUIRequest::getFieldId ( )

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

References ILIAS\Repository\int().

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

◆ getFields()

ILIAS\User\StandardGUIRequest::getFields ( )

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

References ILIAS\Repository\intArray().

119  : array // Missing array type.
120  {
121  return $this->intArray("fields");
122  }
+ Here is the call graph for this function:

◆ getFieldType()

ILIAS\User\StandardGUIRequest::getFieldType ( )

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

References ILIAS\Repository\int().

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

◆ getFiles()

ILIAS\User\StandardGUIRequest::getFiles ( )

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

References ILIAS\Repository\strArray().

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

◆ getFilteredRoles()

ILIAS\User\StandardGUIRequest::getFilteredRoles ( )

Definition at line 184 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

184  : int
185  {
186  return $this->int("filter");
187  }
+ Here is the call graph for this function:

◆ getFrSearch()

ILIAS\User\StandardGUIRequest::getFrSearch ( )

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

References ILIAS\Repository\int().

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

◆ getIds()

ILIAS\User\StandardGUIRequest::getIds ( )

Definition at line 104 of file class.StandardGUIRequest.php.

References ILIAS\Repository\intArray().

104  : array // Missing array type.
105  {
106  return $this->intArray("id");
107  }
+ Here is the call graph for this function:

◆ getJumpToUser()

ILIAS\User\StandardGUIRequest::getJumpToUser ( )

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

References ILIAS\Repository\int().

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

◆ getLetter()

ILIAS\User\StandardGUIRequest::getLetter ( )

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

References ILIAS\Repository\str().

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

◆ getMailAttDelete()

ILIAS\User\StandardGUIRequest::getMailAttDelete ( string  $lang)

Definition at line 164 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

164  : bool
165  {
166  return (bool) $this->int("att_" . $lang . "_delete");
167  }
$lang
Definition: xapiexit.php:26
+ Here is the call graph for this function:

◆ getMailBody()

ILIAS\User\StandardGUIRequest::getMailBody ( string  $lang)

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

References ILIAS\Repository\str().

159  : string
160  {
161  return $this->str("body_" . $lang);
162  }
$lang
Definition: xapiexit.php:26
+ Here is the call graph for this function:

◆ getMailSalutation()

ILIAS\User\StandardGUIRequest::getMailSalutation ( string  $gender,
string  $lang 
)

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

References ILIAS\Repository\str().

149  : string
150  {
151  return $this->str("sal_" . $gender . "_" . $lang);
152  }
$lang
Definition: xapiexit.php:26
+ Here is the call graph for this function:

◆ getMailSubject()

ILIAS\User\StandardGUIRequest::getMailSubject ( string  $lang)

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

References ILIAS\Repository\str().

154  : string
155  {
156  return $this->str("subject_" . $lang);
157  }
$lang
Definition: xapiexit.php:26
+ Here is the call graph for this function:

◆ getNewPassword()

ILIAS\User\StandardGUIRequest::getNewPassword ( )

Definition at line 214 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

214  : string
215  {
216  return $this->str("new_password");
217  }
+ Here is the call graph for this function:

◆ getPassword()

ILIAS\User\StandardGUIRequest::getPassword ( )

Definition at line 194 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

194  : string
195  {
196  return $this->str("passwd");
197  }
+ Here is the call graph for this function:

◆ getPositions()

ILIAS\User\StandardGUIRequest::getPositions ( )

Definition at line 204 of file class.StandardGUIRequest.php.

References ILIAS\Repository\intArray().

204  : array // Missing array type.
205  {
206  return $this->intArray("position");
207  }
+ Here is the call graph for this function:

◆ getPostedRoleIds()

ILIAS\User\StandardGUIRequest::getPostedRoleIds ( )

Definition at line 179 of file class.StandardGUIRequest.php.

References ILIAS\Repository\intArray().

179  : array // Missing array type.
180  {
181  return $this->intArray("role_id_ctrl");
182  }
+ Here is the call graph for this function:

◆ getRefId()

ILIAS\User\StandardGUIRequest::getRefId ( )

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

References ILIAS\Repository\int().

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

◆ getRoleId()

ILIAS\User\StandardGUIRequest::getRoleId ( )

Definition at line 90 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

90  : string
91  {
92  $role_id = $this->str("rolid");
93  if ($role_id === '0' || $role_id === '') {
94  $role_id = $this->str("role_id");
95  }
96  return $role_id;
97  }
+ Here is the call graph for this function:

◆ getRoleIds()

ILIAS\User\StandardGUIRequest::getRoleIds ( )

Definition at line 174 of file class.StandardGUIRequest.php.

References ILIAS\Repository\intArray().

174  : array // Missing array type.
175  {
176  return $this->intArray("role_id");
177  }
+ Here is the call graph for this function:

◆ getSearch()

ILIAS\User\StandardGUIRequest::getSearch ( )

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

References ILIAS\Repository\str().

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

◆ getSelect()

ILIAS\User\StandardGUIRequest::getSelect ( )

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

References ILIAS\Repository\strArray().

134  : array // Missing array type.
135  {
136  return $this->strArray("select");
137  }
+ Here is the call graph for this function:

◆ getSelectAll()

ILIAS\User\StandardGUIRequest::getSelectAll ( )

Definition at line 169 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

169  : bool
170  {
171  return (bool) $this->int("select_cmd_all");
172  }
+ Here is the call graph for this function:

◆ getSelectedAction()

ILIAS\User\StandardGUIRequest::getSelectedAction ( )

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

References ILIAS\Repository\str().

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

◆ getSendMail()

ILIAS\User\StandardGUIRequest::getSendMail ( )

Definition at line 189 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

189  : string
190  {
191  return $this->str("send_mail");
192  }
+ Here is the call graph for this function:

◆ getStartingPointId()

ILIAS\User\StandardGUIRequest::getStartingPointId ( )

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

References $id, and ILIAS\Repository\str().

81  : string
82  {
83  $id = $this->str("spid");
84  if ($id === '0' || $id === '') {
85  $id = $this->str("start_point_id");
86  }
87  return $id;
88  }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
+ Here is the call graph for this function:

◆ getTerm()

ILIAS\User\StandardGUIRequest::getTerm ( )

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

References ILIAS\Repository\str().

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

◆ getUDFs()

ILIAS\User\StandardGUIRequest::getUDFs ( )

Definition at line 199 of file class.StandardGUIRequest.php.

References ILIAS\Repository\strArray().

199  : array // Missing array type.
200  {
201  return $this->strArray("udf");
202  }
+ Here is the call graph for this function:

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