Completed
Push — 1.10.x ( 8104fe...432f77 )
by Angel Fernando Quiroz
125:00 queued 74:07
created
main/inc/lib/exercise_show_functions.lib.php 1 patch
Doc Comments   +32 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@  discard block
 block discarded – undo
24 24
 	 * @param int       Question ID
25 25
      * @param int $resultsDisabled
26 26
      * @param string $originalStudentAnswer
27
+     * @param integer $feedbackType
28
+     * @param integer $id
29
+     * @param integer $questionId
27 30
 	 * @return void
28 31
 	 */
29 32
 	public static function display_fill_in_blanks_answer($feedbackType, $answer, $id, $questionId, $resultsDisabled, $originalStudentAnswer = '')
@@ -62,6 +65,9 @@  discard block
 block discarded – undo
62 65
      * @param string    Answer text
63 66
      * @param int       Exercise ID
64 67
      * @param int       Question ID
68
+     * @param integer $feedback_type
69
+     * @param integer $id
70
+     * @param integer $questionId
65 71
      * @return void
66 72
      */
67 73
     public static function display_calculated_answer($feedback_type, $answer, $id, $questionId)
@@ -95,6 +101,9 @@  discard block
 block discarded – undo
95 101
 	 * @param string    Answer text
96 102
 	 * @param int       Exercise ID
97 103
 	 * @param int       Question ID
104
+	 * @param integer $feedback_type
105
+	 * @param integer $exe_id
106
+	 * @param integer $questionId
98 107
 	 * @return void
99 108
 	 */
100 109
 	public static function display_free_answer($feedback_type, $answer, $exe_id, $questionId, $questionScore = null)
@@ -117,6 +126,12 @@  discard block
 block discarded – undo
117 126
         }
118 127
 	}
119 128
 
129
+	/**
130
+	 * @param integer $feedback_type
131
+	 * @param integer $id
132
+	 * @param integer $questionId
133
+	 * @param Nanogong $nano
134
+	 */
120 135
 	public static function display_oral_expression_answer($feedback_type, $answer, $id, $questionId, $nano = null)
121 136
     {
122 137
         if (isset($nano)) {
@@ -234,6 +249,11 @@  discard block
 block discarded – undo
234 249
 	 * @param integer Exercise ID
235 250
 	 * @param integer Question ID
236 251
 	 * @param boolean Whether to show the answer comment or not
252
+	 * @param integer $answerType
253
+	 * @param string $answerComment
254
+	 * @param integer $answerCorrect
255
+	 * @param integer $id
256
+	 * @param integer $questionId
237 257
 	 * @return void
238 258
 	 */
239 259
 	public static function display_unique_or_multiple_answer(
@@ -324,6 +344,12 @@  discard block
 block discarded – undo
324 344
      * @param integer Exercise ID
325 345
      * @param integer Question ID
326 346
      * @param boolean Whether to show the answer comment or not
347
+     * @param integer $feedback_type
348
+     * @param integer $answerType
349
+     * @param string $answerComment
350
+     * @param integer $answerCorrect
351
+     * @param integer $id
352
+     * @param integer $questionId
327 353
      * @return void
328 354
      */
329 355
     public static function display_multiple_answer_true_false(
@@ -414,6 +440,12 @@  discard block
 block discarded – undo
414 440
      * @param integer Exercise ID
415 441
      * @param integer Question ID
416 442
      * @param boolean Whether to show the answer comment or not
443
+     * @param integer $feedback_type
444
+     * @param integer $answerType
445
+     * @param string $answerComment
446
+     * @param integer $answerCorrect
447
+     * @param integer $id
448
+     * @param integer $questionId
417 449
      * @return void
418 450
      */
419 451
     static function display_multiple_answer_combination_true_false(
Please login to merge, or discard this patch.