ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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 ()
 
 getExportCmd ()
 
 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.

37 {
38 $this->initRequest(
39 $http,
41 $get,
42 $post
43 );
44 }
$http
Definition: deliver.php:30
$post
Definition: ltitoken.php:46
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.

References $post, ILIAS\UI\examples\Layout\Page\Standard\$refinery, and ILIAS\Repository\initRequest().

+ Here is the call graph for this function:

Member Function Documentation

◆ getActiveIds()

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

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

130 : array
131 {
132 return $this->intArray("active_ids");
133 }

References ILIAS\Repository\intArray().

+ Here is the call graph for this function:

◆ getAppraiseeId()

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

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

80 : int
81 {
82 return $this->int("appr_id");
83 }

References ILIAS\Repository\int().

+ Here is the call graph for this function:

◆ getCompEvalMode()

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

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

95 : string
96 {
97 return $this->str("comp_eval_mode");
98 }

References ILIAS\Repository\str().

+ Here is the call graph for this function:

◆ getCP()

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

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

75 : string
76 {
77 return $this->str("cp");
78 }

References ILIAS\Repository\str().

+ Here is the call graph for this function:

◆ getExportCmd()

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

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

115 : string
116 {
117 return $this->str("export_cmd");
118 }

References ILIAS\Repository\str().

+ Here is the call graph for this function:

◆ getExportFormat()

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

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

110 : string
111 {
112 return $this->str("export_format");
113 }

References ILIAS\Repository\str().

+ Here is the call graph for this function:

◆ getExportLabel()

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

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

105 : string
106 {
107 return $this->str("export_label");
108 }

References ILIAS\Repository\str().

+ Here is the call graph for this function:

◆ getPrintSelection()

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

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

120 : string
121 {
122 return $this->str("print_selection");
123 }

References ILIAS\Repository\str().

+ Here is the call graph for this function:

◆ getQuestionIds()

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

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

125 : array
126 {
127 return $this->intArray("qids");
128 }

References ILIAS\Repository\intArray().

+ Here is the call graph for this function:

◆ getRaterId()

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

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

85 : string
86 {
87 return $this->str("rater_id");
88 }

References ILIAS\Repository\str().

+ Here is the call graph for this function:

◆ getRefId()

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

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

90 : int
91 {
92 return $this->int("ref_id");
93 }

References ILIAS\Repository\int().

+ Here is the call graph for this function:

◆ getShowAbsolute()

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

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

63 : bool
64 {
65 $cp = $this->str("cp");
66 return $cp === "" || is_int(strpos($cp, "a"));
67 }

References ILIAS\Repository\str().

+ Here is the call graph for this function:

◆ getShowChart()

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

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

52 : bool
53 {
54 $vw = $this->str("vw");
55 return $vw === "" || is_int(strpos($vw, "c"));
56 }

References ILIAS\Repository\str().

+ Here is the call graph for this function:

◆ getShowPercentage()

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

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

69 : bool
70 {
71 $cp = $this->str("cp");
72 return $cp === "" || is_int(strpos($cp, "p"));
73 }

References ILIAS\Repository\str().

+ Here is the call graph for this function:

◆ getShowTable()

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

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

46 : bool
47 {
48 $vw = $this->str("vw");
49 return $vw === "" || is_int(strpos($vw, "t"));
50 }

References ILIAS\Repository\str().

+ Here is the call graph for this function:

◆ getSurveyCode()

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

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

100 : string
101 {
102 return $this->str("surveycode");
103 }

References ILIAS\Repository\str().

+ Here is the call graph for this function:

◆ getVW()

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

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

58 : string
59 {
60 return $this->str("vw");
61 }

References ILIAS\Repository\str().

+ 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: