ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
All Data Structures Namespaces Files Functions Variables Modules Pages
ILIAS\Survey\Evaluation\EvaluationGUIRequest Class Reference
+ Collaboration diagram for ILIAS\Survey\Evaluation\EvaluationGUIRequest:

Public Member Functions

 __construct (\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery, ?array $get=null, ?array $post=null)
 
 getShowTable ()
 
 getShowChart ()
 
 getVW ()
 
 getShowAbsolute ()
 
 getShowPercentage ()
 
 getCP ()
 
 getAppraiseeId ()
 
 getRaterId ()
 
 getRefId ()
 
 getCompEvalMode ()
 
 getSurveyCode ()
 
 getExportLabel ()
 
 getExportFormat ()
 
 getPrintSelection ()
 
 getQuestionIds ()
 
 getActiveIds ()
 

Protected Attributes

array $params
 

Detailed Description

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

Definition at line 26 of file class.EvaluationGUIRequest.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::__construct ( \ILIAS\HTTP\Services  $http,
\ILIAS\Refinery\Factory  $refinery,
?array  $get = null,
?array  $post = null 
)

Definition at line 32 of file class.EvaluationGUIRequest.php.

References $post, and ILIAS\Repository\initRequest().

37  {
38  $this->initRequest(
39  $http,
40  $refinery,
41  $get,
42  $post
43  );
44  }
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
$post
Definition: ltitoken.php:49
Refinery Factory $refinery
+ Here is the call graph for this function:

Member Function Documentation

◆ getActiveIds()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getActiveIds ( )

Definition at line 125 of file class.EvaluationGUIRequest.php.

References ILIAS\Repository\intArray().

125  : array
126  {
127  return $this->intArray("active_ids");
128  }
+ Here is the call graph for this function:

◆ getAppraiseeId()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getAppraiseeId ( )

Definition at line 80 of file class.EvaluationGUIRequest.php.

References ILIAS\Repository\int().

80  : int
81  {
82  return $this->int("appr_id");
83  }
+ Here is the call graph for this function:

◆ getCompEvalMode()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getCompEvalMode ( )

Definition at line 95 of file class.EvaluationGUIRequest.php.

References ILIAS\Repository\str().

95  : string
96  {
97  return $this->str("comp_eval_mode");
98  }
+ Here is the call graph for this function:

◆ getCP()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getCP ( )

Definition at line 75 of file class.EvaluationGUIRequest.php.

References ILIAS\Repository\str().

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

◆ getExportFormat()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getExportFormat ( )

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

References ILIAS\Repository\str().

110  : string
111  {
112  return $this->str("export_format");
113  }
+ Here is the call graph for this function:

◆ getExportLabel()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getExportLabel ( )

Definition at line 105 of file class.EvaluationGUIRequest.php.

References ILIAS\Repository\str().

105  : string
106  {
107  return $this->str("export_label");
108  }
+ Here is the call graph for this function:

◆ getPrintSelection()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getPrintSelection ( )

Definition at line 115 of file class.EvaluationGUIRequest.php.

References ILIAS\Repository\str().

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

◆ getQuestionIds()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getQuestionIds ( )

Definition at line 120 of file class.EvaluationGUIRequest.php.

References ILIAS\Repository\intArray().

120  : array
121  {
122  return $this->intArray("qids");
123  }
+ Here is the call graph for this function:

◆ getRaterId()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getRaterId ( )

Definition at line 85 of file class.EvaluationGUIRequest.php.

References ILIAS\Repository\str().

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

◆ getRefId()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getRefId ( )

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

References ILIAS\Repository\int().

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

◆ getShowAbsolute()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getShowAbsolute ( )

Definition at line 63 of file class.EvaluationGUIRequest.php.

References ILIAS\Repository\str().

63  : bool
64  {
65  $cp = $this->str("cp");
66  return $cp === "" || is_int(strpos($cp, "a"));
67  }
+ Here is the call graph for this function:

◆ getShowChart()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getShowChart ( )

Definition at line 52 of file class.EvaluationGUIRequest.php.

References ILIAS\Repository\str().

52  : bool
53  {
54  $vw = $this->str("vw");
55  return $vw === "" || is_int(strpos($vw, "c"));
56  }
+ Here is the call graph for this function:

◆ getShowPercentage()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getShowPercentage ( )

Definition at line 69 of file class.EvaluationGUIRequest.php.

References ILIAS\Repository\str().

69  : bool
70  {
71  $cp = $this->str("cp");
72  return $cp === "" || is_int(strpos($cp, "p"));
73  }
+ Here is the call graph for this function:

◆ getShowTable()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getShowTable ( )

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

References ILIAS\Repository\str().

46  : bool
47  {
48  $vw = $this->str("vw");
49  return $vw === "" || is_int(strpos($vw, "t"));
50  }
+ Here is the call graph for this function:

◆ getSurveyCode()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getSurveyCode ( )

Definition at line 100 of file class.EvaluationGUIRequest.php.

References ILIAS\Repository\str().

100  : string
101  {
102  return $this->str("surveycode");
103  }
+ Here is the call graph for this function:

◆ getVW()

ILIAS\Survey\Evaluation\EvaluationGUIRequest::getVW ( )

Definition at line 58 of file class.EvaluationGUIRequest.php.

References ILIAS\Repository\str().

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

Field Documentation

◆ $params

array ILIAS\Survey\Evaluation\EvaluationGUIRequest::$params
protected

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


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