@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | } |
| 240 | 240 | |
| 241 | 241 | /** |
| 242 | - * @param doc_id id of document (id in mainDb.document table) |
|
| 242 | + * @param doc_id string of document (id in mainDb.document table) |
|
| 243 | 243 | * @author Sebastien Piraux <[email protected]> |
| 244 | 244 | * @desc Record information for upload event |
| 245 | 245 | * used in the works tool to record informations when |
@@ -311,6 +311,8 @@ discard block |
||
| 311 | 311 | * @param int session_id |
| 312 | 312 | * @param int learnpath_id (id of the learnpath) |
| 313 | 313 | * @param int learnpath_item_id (id of the learnpath_item) |
| 314 | + * @param integer $weighting |
|
| 315 | + * @param integer $session_id |
|
| 314 | 316 | * |
| 315 | 317 | * @author Sebastien Piraux <[email protected]> |
| 316 | 318 | * @author Julio Montoya Armas <[email protected]> Reworked 2010 |
@@ -412,7 +414,9 @@ discard block |
||
| 412 | 414 | * @param integer Session ID (from the session table). Default value of null means "get from context". |
| 413 | 415 | * @param integer Learnpath ID (from c_lp table). Default value of null means "get from context". |
| 414 | 416 | * @param integer Learnpath item ID (from the c_lp_item table). Default value of null means "get from context". |
| 415 | - * @return boolean Result of the insert query |
|
| 417 | + * @param integer $exe_id |
|
| 418 | + * @param integer $position |
|
| 419 | + * @return false|string Result of the insert query |
|
| 416 | 420 | */ |
| 417 | 421 | public static function saveQuestionAttempt( |
| 418 | 422 | $score, |
@@ -582,6 +586,7 @@ discard block |
||
| 582 | 586 | * @param int Whether this answer is correct (1) or not (0) |
| 583 | 587 | * @param string Coordinates of this point (e.g. 123;324) |
| 584 | 588 | * @param bool update results? |
| 589 | + * @param integer $exe_id |
|
| 585 | 590 | * @return boolean Result of the insert query |
| 586 | 591 | * @uses Course code and user_id from global scope $_cid and $_user |
| 587 | 592 | */ |
@@ -714,7 +719,6 @@ discard block |
||
| 714 | 719 | /** |
| 715 | 720 | * Get every email stored in the database |
| 716 | 721 | * |
| 717 | - * @param int $etId |
|
| 718 | 722 | * @return type |
| 719 | 723 | * @assert () !== false |
| 720 | 724 | */ |
@@ -782,11 +786,11 @@ discard block |
||
| 782 | 786 | /** |
| 783 | 787 | * Save the new message for one event and for one language |
| 784 | 788 | * |
| 785 | - * @param string $eventName |
|
| 789 | + * @param string $event_name |
|
| 786 | 790 | * @param array $users |
| 787 | 791 | * @param string $message |
| 788 | 792 | * @param string $subject |
| 789 | - * @param string $eventMessageLanguage |
|
| 793 | + * @param string $event_message_language |
|
| 790 | 794 | * @param int $activated |
| 791 | 795 | */ |
| 792 | 796 | public static function save_event_type_message($event_name, $users, $message, $subject, $event_message_language, $activated) |
@@ -920,10 +924,10 @@ discard block |
||
| 920 | 924 | } |
| 921 | 925 | |
| 922 | 926 | /** |
| 923 | - * @param $user_id |
|
| 927 | + * @param integer $user_id |
|
| 924 | 928 | * @param $exerciseId |
| 925 | - * @param $lp_id |
|
| 926 | - * @param $lp_item_id |
|
| 929 | + * @param integer $lp_id |
|
| 930 | + * @param integer $lp_item_id |
|
| 927 | 931 | * @return int |
| 928 | 932 | */ |
| 929 | 933 | public static function get_attempt_count_not_finished($user_id, $exerciseId, $lp_id, $lp_item_id) |
@@ -1100,6 +1104,7 @@ discard block |
||
| 1100 | 1104 | * @param int exercise id |
| 1101 | 1105 | * @param int $courseId |
| 1102 | 1106 | * @param int session id |
| 1107 | + * @param integer $user_id |
|
| 1103 | 1108 | * @return array with the results |
| 1104 | 1109 | * |
| 1105 | 1110 | */ |
@@ -1195,6 +1200,7 @@ discard block |
||
| 1195 | 1200 | * @param int exercise id |
| 1196 | 1201 | * @param int $courseId |
| 1197 | 1202 | * @param int session id |
| 1203 | + * @param integer $user_id |
|
| 1198 | 1204 | * @return array with the results |
| 1199 | 1205 | * |
| 1200 | 1206 | */ |
@@ -1235,6 +1241,7 @@ discard block |
||
| 1235 | 1241 | * @param int exercise id |
| 1236 | 1242 | * @param string course code |
| 1237 | 1243 | * @param int session id |
| 1244 | + * @param integer $exe_id |
|
| 1238 | 1245 | * @return array with the results |
| 1239 | 1246 | * |
| 1240 | 1247 | */ |
@@ -1284,6 +1291,7 @@ discard block |
||
| 1284 | 1291 | * @param int lp id |
| 1285 | 1292 | * @param int lp item id |
| 1286 | 1293 | * @param string order asc or desc |
| 1294 | + * @param integer $courseId |
|
| 1287 | 1295 | * @return array with the results |
| 1288 | 1296 | * |
| 1289 | 1297 | */ |
@@ -1343,7 +1351,7 @@ discard block |
||
| 1343 | 1351 | * @param int exercise id |
| 1344 | 1352 | * @param int $courseId |
| 1345 | 1353 | * @param int session id |
| 1346 | - * @return array with the results |
|
| 1354 | + * @return string with the results |
|
| 1347 | 1355 | * |
| 1348 | 1356 | */ |
| 1349 | 1357 | public static function count_exercise_attempts_by_user($user_id, $exercise_id, $courseId, $session_id = 0) |
@@ -1519,7 +1527,7 @@ discard block |
||
| 1519 | 1527 | * @param int exercise id |
| 1520 | 1528 | * @param int course id |
| 1521 | 1529 | * @param int session id |
| 1522 | - * @return array with the results |
|
| 1530 | + * @return integer with the results |
|
| 1523 | 1531 | * |
| 1524 | 1532 | */ |
| 1525 | 1533 | public static function get_count_exercises_attempted_by_course($courseId, $session_id = 0) |
@@ -1255,6 +1255,7 @@ discard block |
||
| 1255 | 1255 | |
| 1256 | 1256 | /** |
| 1257 | 1257 | * Validates the time control key |
| 1258 | + * @param integer $exercise_id |
|
| 1258 | 1259 | */ |
| 1259 | 1260 | public static function exercise_time_control_is_valid( |
| 1260 | 1261 | $exercise_id, |
@@ -1388,7 +1389,7 @@ discard block |
||
| 1388 | 1389 | * @param int $in_direction |
| 1389 | 1390 | * @param string $in_hotpot_path |
| 1390 | 1391 | * @param bool $in_get_count |
| 1391 | - * @param null $where_condition |
|
| 1392 | + * @param string $where_condition |
|
| 1392 | 1393 | * @return array|int |
| 1393 | 1394 | */ |
| 1394 | 1395 | public static function get_exam_results_hotpotatoes_data( |
@@ -2179,7 +2180,7 @@ discard block |
||
| 2179 | 2180 | /** |
| 2180 | 2181 | * Return true if pass_pourcentage activated (we use the pass pourcentage feature |
| 2181 | 2182 | * return false if pass_percentage = 0 (we don't use the pass pourcentage feature |
| 2182 | - * @param $in_pass_pourcentage |
|
| 2183 | + * @param string $in_pass_pourcentage |
|
| 2183 | 2184 | * @return boolean |
| 2184 | 2185 | * In this version, pass_percentage and show_success_message are disabled if |
| 2185 | 2186 | * pass_percentage is set to 0 |
@@ -2192,7 +2193,7 @@ discard block |
||
| 2192 | 2193 | /** |
| 2193 | 2194 | * Converts a numeric value in a percentage example 0.66666 to 66.67 % |
| 2194 | 2195 | * @param $value |
| 2195 | - * @return float Converted number |
|
| 2196 | + * @return string Converted number |
|
| 2196 | 2197 | */ |
| 2197 | 2198 | public static function convert_to_percentage($value) |
| 2198 | 2199 | { |
@@ -2208,7 +2209,7 @@ discard block |
||
| 2208 | 2209 | * @param float $score |
| 2209 | 2210 | * @param float $weight |
| 2210 | 2211 | * @deprecated seem not to be used |
| 2211 | - * @return float the score rounded converted to the new range |
|
| 2212 | + * @return string|null the score rounded converted to the new range |
|
| 2212 | 2213 | */ |
| 2213 | 2214 | public static function convert_score($score, $weight) |
| 2214 | 2215 | { |
@@ -2759,6 +2760,7 @@ discard block |
||
| 2759 | 2760 | * @param int exercise id |
| 2760 | 2761 | * @param int $courseId |
| 2761 | 2762 | * @param int session id |
| 2763 | + * @param integer $user_count |
|
| 2762 | 2764 | * @return float Best average score |
| 2763 | 2765 | */ |
| 2764 | 2766 | public static function get_best_average_score_by_exercise( |
@@ -3198,8 +3200,9 @@ discard block |
||
| 3198 | 3200 | } |
| 3199 | 3201 | |
| 3200 | 3202 | /** |
| 3201 | - * @param array $answer |
|
| 3203 | + * @param string|null $answer |
|
| 3202 | 3204 | * @param string $user_answer |
| 3205 | + * @param string|null $current_answer |
|
| 3203 | 3206 | * @return array |
| 3204 | 3207 | */ |
| 3205 | 3208 | public static function check_fill_in_blanks($answer, $user_answer, $current_answer) |
@@ -3805,7 +3808,7 @@ discard block |
||
| 3805 | 3808 | |
| 3806 | 3809 | /** |
| 3807 | 3810 | * @param int $countLetter |
| 3808 | - * @return mixed |
|
| 3811 | + * @return string |
|
| 3809 | 3812 | */ |
| 3810 | 3813 | public static function detectInputAppropriateClass($countLetter) |
| 3811 | 3814 | { |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | * @param string Name of common tag to place each line in |
| 158 | 158 | * @param string Name of the root element. A root element should always be given. |
| 159 | 159 | * @param string Encoding in which the data is provided |
| 160 | - * @return void Prompts the user for a file download |
|
| 160 | + * @return boolean Prompts the user for a file download |
|
| 161 | 161 | */ |
| 162 | 162 | public static function export_complex_table_xml( |
| 163 | 163 | $data, |
@@ -283,7 +283,7 @@ discard block |
||
| 283 | 283 | * @param string $name |
| 284 | 284 | * @param string $format |
| 285 | 285 | * |
| 286 | - * @return bool |
|
| 286 | + * @return false|null |
|
| 287 | 287 | */ |
| 288 | 288 | public static function htmlToOdt($html, $name, $format = 'odt') |
| 289 | 289 | { |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | /** |
| 126 | - * @return array |
|
| 126 | + * @return string[] |
|
| 127 | 127 | */ |
| 128 | 128 | public static function getValidExtraFieldTypes() |
| 129 | 129 | { |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | |
| 200 | 200 | /** |
| 201 | 201 | * @param array $conditions |
| 202 | - * @param null $order_field_options_by |
|
| 202 | + * @param string $order_field_options_by |
|
| 203 | 203 | * |
| 204 | 204 | * @return array |
| 205 | 205 | */ |
@@ -237,7 +237,7 @@ discard block |
||
| 237 | 237 | /** |
| 238 | 238 | * @param string $variable |
| 239 | 239 | * |
| 240 | - * @return array|bool |
|
| 240 | + * @return integer |
|
| 241 | 241 | */ |
| 242 | 242 | public function get_handler_field_info_by_field_variable($variable) |
| 243 | 243 | { |
@@ -319,7 +319,7 @@ discard block |
||
| 319 | 319 | /** |
| 320 | 320 | * @param string $handler |
| 321 | 321 | * |
| 322 | - * @return array |
|
| 322 | + * @return string[] |
|
| 323 | 323 | */ |
| 324 | 324 | public static function get_extra_fields_by_handler($handler) |
| 325 | 325 | { |
@@ -496,7 +496,7 @@ discard block |
||
| 496 | 496 | } |
| 497 | 497 | |
| 498 | 498 | /** |
| 499 | - * @return array |
|
| 499 | + * @return string[] |
|
| 500 | 500 | */ |
| 501 | 501 | public function get_field_types() |
| 502 | 502 | { |
@@ -506,7 +506,7 @@ discard block |
||
| 506 | 506 | /** |
| 507 | 507 | * @param int $id |
| 508 | 508 | * |
| 509 | - * @return null |
|
| 509 | + * @return string|null |
|
| 510 | 510 | */ |
| 511 | 511 | public function get_field_type_by_id($id) |
| 512 | 512 | { |
@@ -691,7 +691,6 @@ discard block |
||
| 691 | 691 | * @param FormValidator $form |
| 692 | 692 | * @param array $extraData |
| 693 | 693 | * @param bool $admin_permissions |
| 694 | - * @param int $user_id |
|
| 695 | 694 | * @param array $extra |
| 696 | 695 | * @param int $itemId |
| 697 | 696 | * @param array $exclude variables of extra field to exclude |
@@ -1592,7 +1591,7 @@ discard block |
||
| 1592 | 1591 | } |
| 1593 | 1592 | |
| 1594 | 1593 | /** |
| 1595 | - * @return array |
|
| 1594 | + * @return string[] |
|
| 1596 | 1595 | */ |
| 1597 | 1596 | public function getJqgridColumnNames() |
| 1598 | 1597 | { |
@@ -1832,7 +1831,7 @@ discard block |
||
| 1832 | 1831 | } |
| 1833 | 1832 | |
| 1834 | 1833 | /** |
| 1835 | - * @param array $columns |
|
| 1834 | + * @param string[] $columns |
|
| 1836 | 1835 | * @param array $column_model |
| 1837 | 1836 | * @param array $extraFields |
| 1838 | 1837 | * @return array |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | /** |
| 46 | - * @return ExtraField |
|
| 46 | + * @return string |
|
| 47 | 47 | */ |
| 48 | 48 | public function getExtraField() |
| 49 | 49 | { |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | * This function is used with $extraField->addElements() |
| 73 | 73 | * @param array $params array for the insertion into the *_field_values table |
| 74 | 74 | * |
| 75 | - * @return mixed false on empty params, void otherwise |
|
| 75 | + * @return false|null false on empty params, void otherwise |
|
| 76 | 76 | * @assert (array()) === false |
| 77 | 77 | */ |
| 78 | 78 | public function saveFieldValues($params) |
@@ -500,7 +500,7 @@ discard block |
||
| 500 | 500 | * @param int $item_id Item ID (It could be a session_id, course_id or user_id) |
| 501 | 501 | * @param int $field_id Field ID (the ID from the *_field table) |
| 502 | 502 | * @param bool $transform Whether to transform the result to a human readable strings |
| 503 | - * @return mixed A structured array with the field_id and field_value, or false on error |
|
| 503 | + * @return string A structured array with the field_id and field_value, or false on error |
|
| 504 | 504 | * @assert (-1,-1) === false |
| 505 | 505 | */ |
| 506 | 506 | public function get_values_by_handler_and_field_id($item_id, $field_id, $transform = false) |
@@ -593,7 +593,7 @@ discard block |
||
| 593 | 593 | * @param int $item_id Item ID from the original table |
| 594 | 594 | * @param string $field_variable The name of the field we are looking for |
| 595 | 595 | * @param bool $transform |
| 596 | - * @param bool $allVisibility |
|
| 596 | + * @param bool $visibility |
|
| 597 | 597 | * |
| 598 | 598 | * @return mixed Array of results, or false on error or not found |
| 599 | 599 | * @assert (-1,'') === false |
@@ -13,6 +13,8 @@ discard block |
||
| 13 | 13 | * @param - action (string) - action type require : 'delete' or 'update' |
| 14 | 14 | * @param - old_path (string) - old path info stored to change |
| 15 | 15 | * @param - new_path (string) - new path info to substitute |
| 16 | + * @param string $action |
|
| 17 | + * @param string $old_path |
|
| 16 | 18 | * @desc Update the file or directory path in the document db document table |
| 17 | 19 | * |
| 18 | 20 | */ |
@@ -76,8 +78,8 @@ discard block |
||
| 76 | 78 | * Deletes a file or a directory |
| 77 | 79 | * |
| 78 | 80 | * @author - Hugues Peeters |
| 79 | - * @param $file (String) - the path of file or directory to delete |
|
| 80 | - * @return boolean - true if the delete succeed, false otherwise. |
|
| 81 | + * @param string $file (String) - the path of file or directory to delete |
|
| 82 | + * @return boolean|null - true if the delete succeed, false otherwise. |
|
| 81 | 83 | * @see - delete() uses check_name_exist() and removeDir() functions |
| 82 | 84 | */ |
| 83 | 85 | function my_delete($file) |
@@ -162,9 +164,9 @@ discard block |
||
| 162 | 164 | * Renames a file or a directory |
| 163 | 165 | * |
| 164 | 166 | * @author - Hugues Peeters <[email protected]> |
| 165 | - * @param - $file_path (string) - complete path of the file or the directory |
|
| 166 | - * @param - $new_file_name (string) - new name for the file or the directory |
|
| 167 | - * @return - boolean - true if succeed |
|
| 167 | + * @param string $file_path (string) - complete path of the file or the directory |
|
| 168 | + * @param string $new_file_name (string) - new name for the file or the directory |
|
| 169 | + * @return string boolean - true if succeed |
|
| 168 | 170 | * - boolean - false otherwise |
| 169 | 171 | * @see - rename() uses the check_name_exist() and php2phps() functions |
| 170 | 172 | */ |
@@ -327,7 +329,6 @@ discard block |
||
| 327 | 329 | * Calculation size of a directory |
| 328 | 330 | * |
| 329 | 331 | * @returns integer size |
| 330 | - * @param string $path path to size |
|
| 331 | 332 | * @param boolean $recursive if true , include subdir in total |
| 332 | 333 | */ |
| 333 | 334 | function dirsize($root, $recursive = true) { |
@@ -17,6 +17,7 @@ discard block |
||
| 17 | 17 | * |
| 18 | 18 | * @author - Hugues Peeters <[email protected]> |
| 19 | 19 | * @param - file_name (string) name of a file |
| 20 | + * @param string $file_name |
|
| 20 | 21 | * @return - the filenam phps'ized |
| 21 | 22 | */ |
| 22 | 23 | function php2phps($file_name) { |
@@ -73,7 +74,7 @@ discard block |
||
| 73 | 74 | * Returns the name without extension, used for the title |
| 74 | 75 | * |
| 75 | 76 | * @param string $name |
| 76 | - * @return name without the extension |
|
| 77 | + * @return string without the extension |
|
| 77 | 78 | */ |
| 78 | 79 | function get_document_title($name) { |
| 79 | 80 | // If they upload .htaccess... |
@@ -86,7 +87,7 @@ discard block |
||
| 86 | 87 | * This function checks if the upload succeeded |
| 87 | 88 | * |
| 88 | 89 | * @param array $uploaded_file ($_FILES) |
| 89 | - * @return true if upload succeeded |
|
| 90 | + * @return boolean if upload succeeded |
|
| 90 | 91 | */ |
| 91 | 92 | function process_uploaded_file($uploaded_file, $show_output = true) |
| 92 | 93 | { |
@@ -698,6 +699,8 @@ discard block |
||
| 698 | 699 | * @param - dir (string) - Path of the directory |
| 699 | 700 | * whe the file should be added |
| 700 | 701 | * @param - max_dir_space (int) - maximum size of the diretory in byte |
| 702 | + * @param string $dir |
|
| 703 | + * @param integer $max_dir_space |
|
| 701 | 704 | * @return - boolean true if there is enough space, |
| 702 | 705 | * boolean false otherwise |
| 703 | 706 | * |
@@ -1022,7 +1025,7 @@ discard block |
||
| 1022 | 1025 | * @param array $courseInfo |
| 1023 | 1026 | * @param array $userInfo |
| 1024 | 1027 | * @param array $uploaded_file - follows the $_FILES Structure |
| 1025 | - * @param string $upload_path - destination of the upload. |
|
| 1028 | + * @param string $uploadPath - destination of the upload. |
|
| 1026 | 1029 | * This path is to append to $base_work_dir |
| 1027 | 1030 | * @param string $base_work_dir - base working directory of the module |
| 1028 | 1031 | * @param int $maxFilledSpace - amount of bytes to not exceed in the base |
@@ -1201,7 +1204,7 @@ discard block |
||
| 1201 | 1204 | * @param bool $save_visibility |
| 1202 | 1205 | * @param int $group_id |
| 1203 | 1206 | * @param int $session_id Session ID, if any |
| 1204 | - * @return int id if inserted document |
|
| 1207 | + * @return string|false id if inserted document |
|
| 1205 | 1208 | */ |
| 1206 | 1209 | function add_document( |
| 1207 | 1210 | $_course, |
@@ -1337,7 +1340,7 @@ discard block |
||
| 1337 | 1340 | * |
| 1338 | 1341 | * @author Olivier Cauberghe <[email protected]> |
| 1339 | 1342 | * @param path+filename eg: /main/document/document.php |
| 1340 | - * @return The directory depth |
|
| 1343 | + * @return integer directory depth |
|
| 1341 | 1344 | */ |
| 1342 | 1345 | function get_levels($filename) { |
| 1343 | 1346 | $levels = explode('/', $filename); |
@@ -1354,6 +1357,7 @@ discard block |
||
| 1354 | 1357 | * @author Olivier Cauberghe <[email protected]> |
| 1355 | 1358 | * @param path,filename |
| 1356 | 1359 | * action: Adds an entry to the document table with the default settings. |
| 1360 | + * @param string $upload_path |
|
| 1357 | 1361 | */ |
| 1358 | 1362 | function set_default_settings($upload_path, $filename, $filetype = 'file') |
| 1359 | 1363 | { |
@@ -1778,6 +1782,7 @@ discard block |
||
| 1778 | 1782 | |
| 1779 | 1783 | @author Roan Embrechts |
| 1780 | 1784 | @version 0.6 |
| 1785 | + * @param string $buffer |
|
| 1781 | 1786 | */ |
| 1782 | 1787 | function api_replace_links_in_string($upload_path, $buffer) { |
| 1783 | 1788 | // Search for hyperlinks |
@@ -2013,7 +2018,6 @@ discard block |
||
| 2013 | 2018 | * @param int $groupId |
| 2014 | 2019 | * @param bool $output |
| 2015 | 2020 | * @param array $parent |
| 2016 | - * @param string $uploadPath |
|
| 2017 | 2021 | * |
| 2018 | 2022 | */ |
| 2019 | 2023 | function add_all_documents_in_folder_to_database( |
@@ -145,6 +145,7 @@ |
||
| 145 | 145 | |
| 146 | 146 | /** |
| 147 | 147 | * @param array $dates result of parseDateRange() |
| 148 | + * @param string $format |
|
| 148 | 149 | * |
| 149 | 150 | * @return bool |
| 150 | 151 | */ |
@@ -213,7 +213,7 @@ discard block |
||
| 213 | 213 | * @param string $label |
| 214 | 214 | * @param array $attributes |
| 215 | 215 | * |
| 216 | - * @return mixed |
|
| 216 | + * @return HTML_QuickForm_element |
|
| 217 | 217 | */ |
| 218 | 218 | public function addDatePicker($name, $label, $attributes = []) |
| 219 | 219 | { |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | * @param string $label |
| 226 | 226 | * @param array $attributes |
| 227 | 227 | * |
| 228 | - * @return mixed |
|
| 228 | + * @return HTML_QuickForm_element |
|
| 229 | 229 | */ |
| 230 | 230 | public function addDateTimePicker($name, $label, $attributes = []) |
| 231 | 231 | { |
@@ -688,7 +688,7 @@ discard block |
||
| 688 | 688 | * @param array $options |
| 689 | 689 | * @param array $attributes |
| 690 | 690 | * |
| 691 | - * @return HTML_QuickForm_radio |
|
| 691 | + * @return HTML_QuickForm_group |
|
| 692 | 692 | */ |
| 693 | 693 | public function addRadio($name, $label, $options = array(), $attributes = array()) |
| 694 | 694 | { |
@@ -817,7 +817,7 @@ discard block |
||
| 817 | 817 | * @param string $name |
| 818 | 818 | * @param string $label |
| 819 | 819 | * |
| 820 | - * @return mixed |
|
| 820 | + * @return HTML_QuickForm_element |
|
| 821 | 821 | */ |
| 822 | 822 | public function addButtonAdvancedSettings($name, $label = '') |
| 823 | 823 | { |
@@ -914,7 +914,7 @@ discard block |
||
| 914 | 914 | /** |
| 915 | 915 | * This function has been created for avoiding changes directly within QuickForm class. |
| 916 | 916 | * When we use it, the element is threated as 'required' to be dealt during validation. |
| 917 | - * @param array $element The array of elements |
|
| 917 | + * @param array $elements The array of elements |
|
| 918 | 918 | * @param string $message The message displayed |
| 919 | 919 | */ |
| 920 | 920 | public function add_multiple_required_rule($elements, $message) |