ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ExecutionGUIRequest.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\Survey\Execution;
20 
22 
27 {
28  use BaseGUIRequest;
29 
30  protected array $params;
31 
32  public function __construct(
35  ) {
36  $this->initRequest(
37  $http,
38  $refinery
39  );
40  }
41 
42  public function getQuestionId(): int
43  {
44  return $this->int("qid");
45  }
46 
47  public function getRefId(): int
48  {
49  return $this->int("ref_id");
50  }
51 
52  public function getActiveCommand(): string
53  {
54  return $this->str("activecommand");
55  }
56 
57  public function getAccessCode(): string
58  {
59  return $this->str("accesscode");
60  }
61 
62  public function getDirection(): int
63  {
64  return $this->int("direction");
65  }
66 
67  public function getMail(): string
68  {
69  return $this->str("mail");
70  }
71 
72  public function getAppraiseeId(): int
73  {
74  return $this->int("appr_id");
75  }
76 
77  public function getTargetPosition(): string
78  {
79  return $this->str("pgov");
80  }
81 
82  public function getPreview(): int
83  {
84  return $this->int("prvw");
85  }
86 }
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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.
trait BaseGUIRequest
Base gui request wrapper.
$http
Definition: raiseError.php:7
__construct(\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Refinery Factory $refinery