Completed
Push — 1.10.x ( 748658...a788c0 )
by
unknown
63:31
created
main/inc/lib/exercise_show_functions.lib.php 1 patch
Doc Comments   +33 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
 	 * @param int $questionId      Question ID
26 26
      * @param int $resultsDisabled
27 27
      * @param string $originalStudentAnswer
28
+     * @param boolean $showTotalScoreAndUserChoices
28 29
  *
29 30
 	 * @return void
30 31
 	 */
@@ -71,6 +72,10 @@  discard block
 block discarded – undo
71 72
      * @param string    Answer text
72 73
      * @param int       Exercise ID
73 74
      * @param int       Question ID
75
+     * @param integer $feedback_type
76
+     * @param integer $id
77
+     * @param integer $questionId
78
+     * @param boolean|string $showTotalScoreAndUserChoices
74 79
      * @return void
75 80
      */
76 81
     public static function display_calculated_answer(
@@ -110,6 +115,9 @@  discard block
 block discarded – undo
110 115
 	 * @param string    Answer text
111 116
 	 * @param int       Exercise ID
112 117
 	 * @param int       Question ID
118
+	 * @param integer $feedback_type
119
+	 * @param integer $exe_id
120
+	 * @param integer $questionId
113 121
 	 * @return void
114 122
 	 */
115 123
 	public static function display_free_answer(
@@ -139,11 +147,11 @@  discard block
 block discarded – undo
139 147
 	}
140 148
 
141 149
     /**
142
-    * @param $feedback_type
150
+    * @param integer $feedback_type
143 151
     * @param $answer
144
-    * @param $id
145
-    * @param $questionId
146
-    * @param null $nano
152
+    * @param integer $id
153
+    * @param integer $questionId
154
+    * @param Nanogong|null $nano
147 155
     * @param int $results_disabled
148 156
      */
149 157
 	public static function display_oral_expression_answer(
@@ -195,6 +203,7 @@  discard block
 block discarded – undo
195 203
      * @param string $answerComment
196 204
      * @param int $resultsDisabled
197 205
      * @param int $orderColor
206
+     * @param boolean $showTotalScoreAndUserChoices
198 207
      */
199 208
 	public static function display_hotspot_answer(
200 209
         $feedback_type,
@@ -279,6 +288,12 @@  discard block
 block discarded – undo
279 288
 	 * @param integer Exercise ID
280 289
 	 * @param integer Question ID
281 290
 	 * @param boolean Whether to show the answer comment or not
291
+	 * @param integer $answerType
292
+	 * @param string $answerComment
293
+	 * @param integer $answerCorrect
294
+	 * @param integer $id
295
+	 * @param integer $questionId
296
+	 * @param boolean $showTotalScoreAndUserChoices
282 297
 	 * @return void
283 298
 	 */
284 299
 	public static function display_unique_or_multiple_answer(
@@ -375,6 +390,13 @@  discard block
 block discarded – undo
375 390
      * @param integer Exercise ID
376 391
      * @param integer Question ID
377 392
      * @param boolean Whether to show the answer comment or not
393
+     * @param integer $feedback_type
394
+     * @param integer $answerType
395
+     * @param string $answerComment
396
+     * @param integer $answerCorrect
397
+     * @param integer $id
398
+     * @param integer $questionId
399
+     * @param boolean $showTotalScoreAndUserChoices
378 400
      * @return void
379 401
      */
380 402
     public static function display_multiple_answer_true_false(
@@ -479,6 +501,13 @@  discard block
 block discarded – undo
479 501
      * @param integer Exercise ID
480 502
      * @param integer Question ID
481 503
      * @param boolean Whether to show the answer comment or not
504
+     * @param integer $feedback_type
505
+     * @param integer $answerType
506
+     * @param string $answerComment
507
+     * @param integer $answerCorrect
508
+     * @param integer $id
509
+     * @param integer $questionId
510
+     * @param boolean $showTotalScoreAndUserChoices
482 511
      * @return void
483 512
      */
484 513
     public static function display_multiple_answer_combination_true_false(
Please login to merge, or discard this patch.