ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ILIAS\Exercise\GUIRequest Class Reference

Exercise gui request wrapper. More...

+ Collaboration diagram for ILIAS\Exercise\GUIRequest:

Public Member Functions

 __construct (\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
 
 getAssignmentIds ()
 note: shares "id" parameter with team ids More...
 
 getRefId ()
 
 getAssId ()
 
 getAssIds ()
 
 getAssIdGoto ()
 
 getExercise ()
 
 getAssignment ()
 
 getAssType ()
 
 getType ()
 
 getCriteriaType ()
 
 getSelectedAssignments ()
 
 getListedAssignments ()
 
 getMemberId ()
 
 getMemberIds ()
 
 getParticipantId ()
 
 getUserId ()
 
 getUserLogin ()
 
 getSelectedParticipants ()
 
 getListedParticipants ()
 
 getGroupMembers ()
 
 getOldName ()
 
 getNewName ()
 
 getFiles ()
 
 getInstructionFilesToDelete ()
 
 getFile ()
 
 getDone ()
 
 getIdlId ()
 
 getListedIdlIDs ()
 
 getOffset ()
 
 getSortOrder ()
 
 getSortBy ()
 
 getFilterStatus ()
 
 getFilterFeedback ()
 
 getSelectedWspObjId ()
 
 getReviewGiverId ()
 
 getReviewPeerId ()
 
 getReviewCritId ()
 
 getPeerId ()
 
 getGiverId ()
 
 getCritId ()
 
 getFileHash ()
 
 getCatalogueIds ()
 
 getCatalogueId ()
 
 getCriteriaIds ()
 
 getTeamIds ()
 
 getOrder ()
 
 getPositions ()
 
 getMinCharLimit ()
 
 getLearningComments ()
 
 getMarks ()
 key might be ass_ids or user_ids! More...
 
 getTutorNotices ()
 key might be ass_ids or user_ids! More...
 
 getStatus ()
 key might be ass_ids or user_ids! More...
 
 getComment ()
 
 getRatingValue ()
 
 getSubmittedFileIds ()
 
 getSubmittedFileId ()
 
 getResourceObjectId ()
 
 getBlogId ()
 
 getPortfolioId ()
 
 getBackView ()
 
 getMode ()
 
 getFromOverview ()
 
 getZip ()
 

Protected Member Functions

 getIds ()
 

Detailed Description

Exercise gui request wrapper.

This class processes all request parameters which are not handled by form classes already. POST overwrites GET with the same name. POST/GET parameters may be passed to the class for testing purposes.

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 30 of file class.GUIRequest.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Exercise\GUIRequest::__construct ( \ILIAS\HTTP\Services  $http,
\ILIAS\Refinery\Factory  $refinery,
?array  $passed_query_params = null,
?array  $passed_post_data = null 
)

Definition at line 34 of file class.GUIRequest.php.

References ILIAS\Repository\initRequest().

39  {
40  $this->initRequest(
41  $http,
42  $refinery,
43  $passed_query_params,
44  $passed_post_data
45  );
46  }
$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

◆ getAssId()

ILIAS\Exercise\GUIRequest::getAssId ( )

Definition at line 78 of file class.GUIRequest.php.

References ILIAS\Repository\int().

Referenced by ilExerciseManagementGUI\__construct(), and ILIAS\Exercise\GUIRequest\getAssignment().

78  : int
79  {
80  return $this->int("ass_id");
81  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getAssIdGoto()

ILIAS\Exercise\GUIRequest::getAssIdGoto ( )

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

References ILIAS\Repository\int().

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

◆ getAssIds()

ILIAS\Exercise\GUIRequest::getAssIds ( )
Returns
int[]

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

References ILIAS\Repository\intArray().

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

◆ getAssignment()

ILIAS\Exercise\GUIRequest::getAssignment ( )
Exceptions

Definition at line 110 of file class.GUIRequest.php.

References ILIAS\Exercise\GUIRequest\getAssId(), and null.

110  : ?\ilExAssignment
111  {
112  if ($this->getAssId() > 0) {
113  return new \ilExAssignment($this->getAssId());
114  }
115  return null;
116  }
Exercise assignment.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:

◆ getAssignmentIds()

ILIAS\Exercise\GUIRequest::getAssignmentIds ( )

note: shares "id" parameter with team ids

Returns
int[]

Definition at line 68 of file class.GUIRequest.php.

References ILIAS\Exercise\GUIRequest\getIds().

68  : array
69  {
70  return $this->getIds();
71  }
+ Here is the call graph for this function:

◆ getAssType()

ILIAS\Exercise\GUIRequest::getAssType ( )

Definition at line 118 of file class.GUIRequest.php.

References ILIAS\Repository\str().

118  : string
119  {
120  return $this->str("ass_type");
121  }
+ Here is the call graph for this function:

◆ getBackView()

ILIAS\Exercise\GUIRequest::getBackView ( )

Definition at line 499 of file class.GUIRequest.php.

References ILIAS\Repository\int().

499  : int
500  {
501  return $this->int("vw");
502  }
+ Here is the call graph for this function:

◆ getBlogId()

ILIAS\Exercise\GUIRequest::getBlogId ( )

Definition at line 489 of file class.GUIRequest.php.

References ILIAS\Repository\int().

489  : int
490  {
491  return $this->int("blog_id");
492  }
+ Here is the call graph for this function:

◆ getCatalogueId()

ILIAS\Exercise\GUIRequest::getCatalogueId ( )

Definition at line 367 of file class.GUIRequest.php.

References ILIAS\Repository\int().

367  : int
368  {
369  return $this->int("cat_id");
370  }
+ Here is the call graph for this function:

◆ getCatalogueIds()

ILIAS\Exercise\GUIRequest::getCatalogueIds ( )
Returns
int[]

Definition at line 362 of file class.GUIRequest.php.

References ILIAS\Exercise\GUIRequest\getIds().

362  : array
363  {
364  return $this->getIds();
365  }
+ Here is the call graph for this function:

◆ getComment()

ILIAS\Exercise\GUIRequest::getComment ( )

Definition at line 461 of file class.GUIRequest.php.

References ILIAS\Repository\str().

Referenced by ilExerciseManagementGUI\__construct().

461  : string
462  {
463  return $this->str("comment");
464  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getCriteriaIds()

ILIAS\Exercise\GUIRequest::getCriteriaIds ( )
Returns
int[]

Definition at line 375 of file class.GUIRequest.php.

References ILIAS\Exercise\GUIRequest\getIds().

375  : array
376  {
377  return $this->getIds();
378  }
+ Here is the call graph for this function:

◆ getCriteriaType()

ILIAS\Exercise\GUIRequest::getCriteriaType ( )

Definition at line 130 of file class.GUIRequest.php.

References ILIAS\Repository\str().

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

◆ getCritId()

ILIAS\Exercise\GUIRequest::getCritId ( )

Definition at line 348 of file class.GUIRequest.php.

References ILIAS\Repository\str().

348  : string
349  {
350  return $this->str("crit_id");
351  }
+ Here is the call graph for this function:

◆ getDone()

ILIAS\Exercise\GUIRequest::getDone ( )

Definition at line 245 of file class.GUIRequest.php.

References ILIAS\Repository\int().

Referenced by ilExerciseManagementGUI\__construct().

245  : bool
246  {
247  return (bool) $this->int("dn");
248  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getExercise()

ILIAS\Exercise\GUIRequest::getExercise ( )
Exceptions

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

References ilObject\_lookupType(), ILIAS\Exercise\GUIRequest\getRefId(), and null.

Referenced by ilExerciseManagementGUI\__construct().

100  {
101  if ($this->getRefId() > 0 && \ilObject::_lookupType($this->getRefId(), true) == "exc") {
102  return new \ilObjExercise($this->getRefId());
103  }
104  return null;
105  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ilObjExercise.
static _lookupType(int $id, bool $reference=false)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getFile()

ILIAS\Exercise\GUIRequest::getFile ( )

Definition at line 235 of file class.GUIRequest.php.

References ILIAS\Repository\str().

235  : string
236  {
237  return $this->str("file");
238  }
+ Here is the call graph for this function:

◆ getFileHash()

ILIAS\Exercise\GUIRequest::getFileHash ( )

Definition at line 354 of file class.GUIRequest.php.

References ILIAS\Repository\str().

354  : string
355  {
356  return trim($this->str("fuf"));
357  }
+ Here is the call graph for this function:

◆ getFiles()

ILIAS\Exercise\GUIRequest::getFiles ( )
Returns
array<int, list<string>>

Definition at line 222 of file class.GUIRequest.php.

References ILIAS\Repository\arrayArray().

Referenced by ilExerciseManagementGUI\__construct().

222  : array
223  {
224  return $this->arrayArray("file");
225  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getFilterFeedback()

ILIAS\Exercise\GUIRequest::getFilterFeedback ( )

Definition at line 287 of file class.GUIRequest.php.

References ILIAS\Repository\str().

Referenced by ilExerciseManagementGUI\__construct().

287  : string
288  {
289  return trim($this->str("filter_feedback"));
290  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getFilterStatus()

ILIAS\Exercise\GUIRequest::getFilterStatus ( )

Definition at line 282 of file class.GUIRequest.php.

References ILIAS\Repository\str().

Referenced by ilExerciseManagementGUI\__construct().

282  : string
283  {
284  return trim($this->str("filter_status"));
285  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getFromOverview()

ILIAS\Exercise\GUIRequest::getFromOverview ( )

Definition at line 509 of file class.GUIRequest.php.

References ILIAS\Repository\int().

509  : bool
510  {
511  return (bool) $this->int("from_overview");
512  }
+ Here is the call graph for this function:

◆ getGiverId()

ILIAS\Exercise\GUIRequest::getGiverId ( )

Definition at line 342 of file class.GUIRequest.php.

References ILIAS\Repository\int().

342  : int
343  {
344  return $this->int("giver_id");
345  }
+ Here is the call graph for this function:

◆ getGroupMembers()

ILIAS\Exercise\GUIRequest::getGroupMembers ( )
Returns
int[]

Definition at line 200 of file class.GUIRequest.php.

References ILIAS\Repository\arrayArray().

Referenced by ilExerciseManagementGUI\__construct().

200  : array
201  {
202  return $this->arrayArray("grpt");
203  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getIdlId()

ILIAS\Exercise\GUIRequest::getIdlId ( )

Definition at line 250 of file class.GUIRequest.php.

References ILIAS\Repository\str().

Referenced by ilExerciseManagementGUI\__construct().

250  : string
251  {
252  return $this->str("idlid"); // may be comma separated
253  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getIds()

ILIAS\Exercise\GUIRequest::getIds ( )
protected
Returns
int[]

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

References ILIAS\Repository\int(), ILIAS\Repository\intArray(), and ILIAS\Repository\isArray().

Referenced by ILIAS\Exercise\GUIRequest\getAssignmentIds(), ILIAS\Exercise\GUIRequest\getCatalogueIds(), ILIAS\Exercise\GUIRequest\getCriteriaIds(), and ILIAS\Exercise\GUIRequest\getTeamIds().

51  : array
52  {
53  // "id" parameter used in team submission gui
54  if ($this->isArray("id")) {
55  return $this->intArray("id");
56  } else {
57  $team_id = $this->int("id");
58  return ($team_id > 0)
59  ? [$this->int("id")]
60  : [];
61  }
62  }
isArray(string $key)
Check if parameter is an array.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getInstructionFilesToDelete()

ILIAS\Exercise\GUIRequest::getInstructionFilesToDelete ( )
Returns
list<string>

Definition at line 230 of file class.GUIRequest.php.

References ILIAS\Repository\strArray().

230  : array
231  {
232  return $this->strArray("file");
233  }
+ Here is the call graph for this function:

◆ getLearningComments()

ILIAS\Exercise\GUIRequest::getLearningComments ( )
Returns
string[]

Definition at line 429 of file class.GUIRequest.php.

References ILIAS\Repository\strArray().

Referenced by ilExerciseManagementGUI\__construct().

429  : array
430  {
431  return $this->strArray("lcomment");
432  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getListedAssignments()

ILIAS\Exercise\GUIRequest::getListedAssignments ( )
Returns
int[]

Definition at line 146 of file class.GUIRequest.php.

References ILIAS\Repository\intArray().

Referenced by ilExerciseManagementGUI\__construct().

146  : array
147  {
148  return $this->intArray("listed_ass_ids");
149  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getListedIdlIDs()

ILIAS\Exercise\GUIRequest::getListedIdlIDs ( )
Returns
string[]

Definition at line 258 of file class.GUIRequest.php.

References ILIAS\Repository\strArray().

258  : array
259  {
260  return $this->strArray("listed_idl_ids");
261  }
+ Here is the call graph for this function:

◆ getListedParticipants()

ILIAS\Exercise\GUIRequest::getListedParticipants ( )
Returns
int[]

Definition at line 192 of file class.GUIRequest.php.

References ILIAS\Repository\intArray().

Referenced by ilExerciseManagementGUI\__construct().

192  : array
193  {
194  return $this->intArray("listed_part_ids");
195  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getMarks()

ILIAS\Exercise\GUIRequest::getMarks ( )

key might be ass_ids or user_ids!

Returns
string[]

Definition at line 438 of file class.GUIRequest.php.

References ILIAS\Repository\strArray().

Referenced by ilExerciseManagementGUI\__construct().

438  : array
439  {
440  return $this->strArray("mark");
441  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getMemberId()

ILIAS\Exercise\GUIRequest::getMemberId ( )

Definition at line 155 of file class.GUIRequest.php.

References ILIAS\Repository\int().

Referenced by ilExerciseManagementGUI\__construct().

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

◆ getMemberIds()

ILIAS\Exercise\GUIRequest::getMemberIds ( )

Definition at line 160 of file class.GUIRequest.php.

References ILIAS\Repository\intArray().

160  : array
161  {
162  return $this->intArray("member_ids");
163  }
+ Here is the call graph for this function:

◆ getMinCharLimit()

ILIAS\Exercise\GUIRequest::getMinCharLimit ( )

Definition at line 417 of file class.GUIRequest.php.

References ILIAS\Repository\int().

417  : int
418  {
419  return $this->int("min_char_limit");
420  }
+ Here is the call graph for this function:

◆ getMode()

ILIAS\Exercise\GUIRequest::getMode ( )

Definition at line 504 of file class.GUIRequest.php.

References ILIAS\Repository\str().

504  : string
505  {
506  return $this->str("mode");
507  }
+ Here is the call graph for this function:

◆ getNewName()

ILIAS\Exercise\GUIRequest::getNewName ( )

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

References ILIAS\Repository\str().

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

◆ getOffset()

ILIAS\Exercise\GUIRequest::getOffset ( )

Definition at line 267 of file class.GUIRequest.php.

References ILIAS\Repository\int().

267  : int
268  {
269  return $this->int("offset");
270  }
+ Here is the call graph for this function:

◆ getOldName()

ILIAS\Exercise\GUIRequest::getOldName ( )

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

References ILIAS\Repository\str().

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

◆ getOrder()

ILIAS\Exercise\GUIRequest::getOrder ( )
Returns
int[]

Definition at line 400 of file class.GUIRequest.php.

References ILIAS\Repository\intArray().

400  : array
401  {
402  return $this->intArray("order");
403  }
+ Here is the call graph for this function:

◆ getParticipantId()

ILIAS\Exercise\GUIRequest::getParticipantId ( )

Definition at line 166 of file class.GUIRequest.php.

References ILIAS\Repository\int().

Referenced by ilExerciseManagementGUI\__construct().

166  : int
167  {
168  return $this->int("part_id");
169  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getPeerId()

ILIAS\Exercise\GUIRequest::getPeerId ( )

Definition at line 337 of file class.GUIRequest.php.

References ILIAS\Repository\int().

337  : int
338  {
339  return $this->int("peer_id");
340  }
+ Here is the call graph for this function:

◆ getPortfolioId()

ILIAS\Exercise\GUIRequest::getPortfolioId ( )

Definition at line 494 of file class.GUIRequest.php.

References ILIAS\Repository\int().

494  : int
495  {
496  return $this->int("prtf_id");
497  }
+ Here is the call graph for this function:

◆ getPositions()

ILIAS\Exercise\GUIRequest::getPositions ( )
Returns
int[]

Definition at line 408 of file class.GUIRequest.php.

References ILIAS\Repository\intArray().

408  : array
409  {
410  return $this->intArray("pos");
411  }
+ Here is the call graph for this function:

◆ getRatingValue()

ILIAS\Exercise\GUIRequest::getRatingValue ( )

Definition at line 466 of file class.GUIRequest.php.

References ILIAS\Repository\str().

466  : string
467  {
468  return $this->str("value");
469  }
+ Here is the call graph for this function:

◆ getRefId()

ILIAS\Exercise\GUIRequest::getRefId ( )

Definition at line 73 of file class.GUIRequest.php.

References ILIAS\Repository\int().

Referenced by ilExerciseManagementGUI\__construct(), and ILIAS\Exercise\GUIRequest\getExercise().

73  : int
74  {
75  return $this->int("ref_id");
76  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getResourceObjectId()

ILIAS\Exercise\GUIRequest::getResourceObjectId ( )

Definition at line 484 of file class.GUIRequest.php.

References ILIAS\Repository\int().

484  : int
485  {
486  return $this->int("item");
487  }
+ Here is the call graph for this function:

◆ getReviewCritId()

ILIAS\Exercise\GUIRequest::getReviewCritId ( )

Definition at line 326 of file class.GUIRequest.php.

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

326  : string
327  {
328  $giver_peer_id = $this->str("fu");
329  $parts = explode("__", $giver_peer_id);
330  if (isset($parts[2])) {
331  return (string) $parts[2];
332  }
333  return "";
334  }
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
Definition: ltitoken.php:61
+ Here is the call graph for this function:

◆ getReviewGiverId()

ILIAS\Exercise\GUIRequest::getReviewGiverId ( )

Definition at line 305 of file class.GUIRequest.php.

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

305  : int
306  {
307  $giver_peer_id = $this->str("fu");
308  $parts = explode("__", $giver_peer_id);
309  if (count($parts) > 1) {
310  return (int) $parts[0];
311  }
312  return 0;
313  }
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
Definition: ltitoken.php:61
+ Here is the call graph for this function:

◆ getReviewPeerId()

ILIAS\Exercise\GUIRequest::getReviewPeerId ( )

Definition at line 315 of file class.GUIRequest.php.

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

315  : int
316  {
317  $giver_peer_id = $this->str("fu");
318  $parts = explode("__", $giver_peer_id);
319  if (count($parts) > 1) {
320  return (int) $parts[1];
321  }
322 
323  return 0;
324  }
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
Definition: ltitoken.php:61
+ Here is the call graph for this function:

◆ getSelectedAssignments()

ILIAS\Exercise\GUIRequest::getSelectedAssignments ( )
Returns
int[]

Definition at line 138 of file class.GUIRequest.php.

References ILIAS\Repository\intArray().

Referenced by ilExerciseManagementGUI\__construct().

138  : array
139  {
140  return $this->intArray("sel_ass_ids");
141  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getSelectedParticipants()

ILIAS\Exercise\GUIRequest::getSelectedParticipants ( )
Returns
int[]

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

References ILIAS\Repository\intArray().

Referenced by ilExerciseManagementGUI\__construct().

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

◆ getSelectedWspObjId()

ILIAS\Exercise\GUIRequest::getSelectedWspObjId ( )

Definition at line 296 of file class.GUIRequest.php.

References ILIAS\Repository\int().

296  : int
297  {
298  return $this->int("sel_wsp_obj");
299  }
+ Here is the call graph for this function:

◆ getSortBy()

ILIAS\Exercise\GUIRequest::getSortBy ( )

Definition at line 277 of file class.GUIRequest.php.

References ILIAS\Repository\str().

277  : string
278  {
279  return $this->str("sort_by");
280  }
+ Here is the call graph for this function:

◆ getSortOrder()

ILIAS\Exercise\GUIRequest::getSortOrder ( )

Definition at line 272 of file class.GUIRequest.php.

References ILIAS\Repository\str().

272  : string
273  {
274  return $this->str("sort_order");
275  }
+ Here is the call graph for this function:

◆ getStatus()

ILIAS\Exercise\GUIRequest::getStatus ( )

key might be ass_ids or user_ids!

Returns
string[]

Definition at line 456 of file class.GUIRequest.php.

References ILIAS\Repository\strArray().

Referenced by ilExerciseManagementGUI\__construct().

456  : array
457  {
458  return $this->strArray("status");
459  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getSubmittedFileId()

ILIAS\Exercise\GUIRequest::getSubmittedFileId ( )

Definition at line 479 of file class.GUIRequest.php.

References ILIAS\Repository\int().

479  : int
480  {
481  return $this->int("delivered");
482  }
+ Here is the call graph for this function:

◆ getSubmittedFileIds()

ILIAS\Exercise\GUIRequest::getSubmittedFileIds ( )
Returns
int[]

Definition at line 474 of file class.GUIRequest.php.

References ILIAS\Repository\intArray().

474  : array
475  {
476  return $this->intArray("delivered");
477  }
+ Here is the call graph for this function:

◆ getTeamIds()

ILIAS\Exercise\GUIRequest::getTeamIds ( )
Returns
int[]

Definition at line 388 of file class.GUIRequest.php.

References ILIAS\Exercise\GUIRequest\getIds().

388  : array
389  {
390  return $this->getIds();
391  }
+ Here is the call graph for this function:

◆ getTutorNotices()

ILIAS\Exercise\GUIRequest::getTutorNotices ( )

key might be ass_ids or user_ids!

Returns
string[]

Definition at line 447 of file class.GUIRequest.php.

References ILIAS\Repository\strArray().

Referenced by ilExerciseManagementGUI\__construct().

447  : array
448  {
449  return $this->strArray("notice");
450  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getType()

ILIAS\Exercise\GUIRequest::getType ( )

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

References ILIAS\Repository\int().

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

◆ getUserId()

ILIAS\Exercise\GUIRequest::getUserId ( )

Definition at line 171 of file class.GUIRequest.php.

References ILIAS\Repository\int().

171  : int
172  {
173  return $this->int("user_id");
174  }
+ Here is the call graph for this function:

◆ getUserLogin()

ILIAS\Exercise\GUIRequest::getUserLogin ( )

Definition at line 176 of file class.GUIRequest.php.

References ILIAS\Repository\str().

Referenced by ilExerciseManagementGUI\__construct().

176  : string
177  {
178  return trim($this->str("user_login"));
179  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getZip()

ILIAS\Exercise\GUIRequest::getZip ( )

Definition at line 514 of file class.GUIRequest.php.

References ILIAS\Repository\int().

514  : bool
515  {
516  return (bool) $this->int("zip");
517  }
+ Here is the call graph for this function:

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