@@ -51,7 +51,7 @@ |
||
| 51 | 51 | * @param string $objetives |
| 52 | 52 | * @param string $target_audience |
| 53 | 53 | * @param int $user_id |
| 54 | - * @return mixed The database id of the newly created course request or FALSE on failure. |
|
| 54 | + * @return false|string The database id of the newly created course request or FALSE on failure. |
|
| 55 | 55 | */ |
| 56 | 56 | public static function create_course_request( |
| 57 | 57 | $wanted_code, |
@@ -1333,6 +1333,8 @@ discard block |
||
| 1333 | 1333 | * @param string type of time filter: 'last_week' or 'custom' |
| 1334 | 1334 | * @param string start date date('Y-m-d H:i:s') |
| 1335 | 1335 | * @param string end date date('Y-m-d H:i:s') |
| 1336 | + * @param string $start_date |
|
| 1337 | + * @param string $end_date |
|
| 1336 | 1338 | * @return timestamp $nb_seconds |
| 1337 | 1339 | */ |
| 1338 | 1340 | public static function get_time_spent_on_the_platform( |
@@ -1435,7 +1437,7 @@ discard block |
||
| 1435 | 1437 | * Get first connection date for a student |
| 1436 | 1438 | * @param int $student_id |
| 1437 | 1439 | * |
| 1438 | - * @return string|bool Date format long without day or false if there are no connections |
|
| 1440 | + * @return string|false Date format long without day or false if there are no connections |
|
| 1439 | 1441 | */ |
| 1440 | 1442 | public static function get_first_connection_date($student_id) |
| 1441 | 1443 | { |
@@ -1465,7 +1467,7 @@ discard block |
||
| 1465 | 1467 | * @param int $student_id |
| 1466 | 1468 | * @param bool $warning_message Show a warning message (optional) |
| 1467 | 1469 | * @param bool $return_timestamp True for returning results in timestamp (optional) |
| 1468 | - * @return string|int|bool Date format long without day, false if there are no connections or |
|
| 1470 | + * @return string Date format long without day, false if there are no connections or |
|
| 1469 | 1471 | * timestamp if parameter $return_timestamp is true |
| 1470 | 1472 | */ |
| 1471 | 1473 | public static function get_last_connection_date($student_id, $warning_message = false, $return_timestamp = false) |
@@ -2762,6 +2764,9 @@ discard block |
||
| 2762 | 2764 | * @param array Limit average to listed lp ids |
| 2763 | 2765 | * @param int Session id (optional), if param $session_id is |
| 2764 | 2766 | * null(default) it'll return results including sessions, 0 = session is not filtered |
| 2767 | + * @param integer $student_id |
|
| 2768 | + * @param string $course_code |
|
| 2769 | + * @param integer $session_id |
|
| 2765 | 2770 | * @return int Total time |
| 2766 | 2771 | */ |
| 2767 | 2772 | public static function get_time_spent_in_lp($student_id, $course_code, $lp_ids = array(), $session_id = null) |
@@ -2831,6 +2836,8 @@ discard block |
||
| 2831 | 2836 | * @param int|array Student id(s) |
| 2832 | 2837 | * @param string Course code |
| 2833 | 2838 | * @param int Learning path id |
| 2839 | + * @param integer $student_id |
|
| 2840 | + * @param string $course_code |
|
| 2834 | 2841 | * @return int Total time |
| 2835 | 2842 | */ |
| 2836 | 2843 | public static function get_last_connection_time_in_lp($student_id, $course_code, $lp_id, $session_id = 0) |
@@ -5504,7 +5511,7 @@ discard block |
||
| 5504 | 5511 | |
| 5505 | 5512 | /** |
| 5506 | 5513 | * @param FormValidator $form |
| 5507 | - * @return mixed |
|
| 5514 | + * @return FormValidator |
|
| 5508 | 5515 | */ |
| 5509 | 5516 | public static function setUserSearchForm($form) |
| 5510 | 5517 | { |
@@ -6985,7 +6992,7 @@ discard block |
||
| 6985 | 6992 | * @param int $user_id |
| 6986 | 6993 | * @param int $course_id |
| 6987 | 6994 | * @param int $session_id |
| 6988 | - * @return array |
|
| 6995 | + * @return string[] |
|
| 6989 | 6996 | */ |
| 6990 | 6997 | public function display_login_tracking_info($view, $user_id, $course_id, $session_id = 0) |
| 6991 | 6998 | { |
@@ -7031,9 +7038,9 @@ discard block |
||
| 7031 | 7038 | /** |
| 7032 | 7039 | * Displays the exercise results for a specific user in a specific course. |
| 7033 | 7040 | * @param string $view |
| 7034 | - * @param int $user_id User ID |
|
| 7041 | + * @param int $userId User ID |
|
| 7035 | 7042 | * @param string $courseCode Course code |
| 7036 | - * @return array |
|
| 7043 | + * @return string[] |
|
| 7037 | 7044 | * @todo remove globals |
| 7038 | 7045 | */ |
| 7039 | 7046 | public function display_exercise_tracking_info($view, $userId, $courseCode) |
@@ -25,8 +25,6 @@ |
||
| 25 | 25 | * Get allowed tags |
| 26 | 26 | * @param int $mode NO_HTML, STUDENT_HTML, TEACHER_HTML, |
| 27 | 27 | * STUDENT_HTML_FULLPAGE or TEACHER_HTML_FULLPAGE |
| 28 | - * @param boolean $fullpage If true, the allowed tags for full-page editing |
|
| 29 | - * are returned. |
|
| 30 | 28 | */ |
| 31 | 29 | static function get_allowed_tags($mode) |
| 32 | 30 | { |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | * @param string pdf name |
| 193 | 193 | * @param string course code (if you are using html that are located in the document tool you must provide this) |
| 194 | 194 | * @param bool Whether to print the header, footer and watermark (true) or just the content (false) |
| 195 | - * @return bool |
|
| 195 | + * @return false|null |
|
| 196 | 196 | */ |
| 197 | 197 | public function html_to_pdf( |
| 198 | 198 | $html_file_array, |
@@ -766,7 +766,7 @@ discard block |
||
| 766 | 766 | } |
| 767 | 767 | |
| 768 | 768 | /** |
| 769 | - * @param array $header html content |
|
| 769 | + * @param string $header html content |
|
| 770 | 770 | */ |
| 771 | 771 | public function set_custom_header($header) |
| 772 | 772 | { |
@@ -774,7 +774,7 @@ discard block |
||
| 774 | 774 | } |
| 775 | 775 | |
| 776 | 776 | /** |
| 777 | - * @param array $footer html content |
|
| 777 | + * @param string $footer html content |
|
| 778 | 778 | */ |
| 779 | 779 | public function set_custom_footer($footer) |
| 780 | 780 | { |
@@ -72,6 +72,7 @@ discard block |
||
| 72 | 72 | /** |
| 73 | 73 | * Return the XML flow for the possible answers. |
| 74 | 74 | * |
| 75 | + * @param string $questionStatment |
|
| 75 | 76 | */ |
| 76 | 77 | public function imsExportResponses($questionIdent, $questionStatment) |
| 77 | 78 | { |
@@ -147,6 +148,7 @@ discard block |
||
| 147 | 148 | * Export the text with missing words. |
| 148 | 149 | * |
| 149 | 150 | * |
| 151 | + * @param string $questionStatment |
|
| 150 | 152 | */ |
| 151 | 153 | public function imsExportResponses($questionIdent, $questionStatment) |
| 152 | 154 | { |
@@ -204,6 +206,7 @@ discard block |
||
| 204 | 206 | { |
| 205 | 207 | /** |
| 206 | 208 | * Export the question part as a matrix-choice, with only one possible answer per line. |
| 209 | + * @param string $questionStatment |
|
| 207 | 210 | */ |
| 208 | 211 | public function imsExportResponses($questionIdent, $questionStatment) |
| 209 | 212 | { |
@@ -295,6 +298,7 @@ discard block |
||
| 295 | 298 | /** |
| 296 | 299 | * TODO update this to match hot spots instead of copying matching |
| 297 | 300 | * Export the question part as a matrix-choice, with only one possible answer per line. |
| 301 | + * @param string $questionStatment |
|
| 298 | 302 | */ |
| 299 | 303 | public function imsExportResponses($questionIdent, $questionStatment, $questionDesc='', $questionMedia='') |
| 300 | 304 | { |
@@ -382,6 +386,7 @@ discard block |
||
| 382 | 386 | /** |
| 383 | 387 | * TODO implement |
| 384 | 388 | * Export the question part as a matrix-choice, with only one possible answer per line. |
| 389 | + * @param string $questionStatment |
|
| 385 | 390 | */ |
| 386 | 391 | public function imsExportResponses($questionIdent, $questionStatment, $questionDesc='', $questionMedia='') |
| 387 | 392 | { |
@@ -259,7 +259,7 @@ discard block |
||
| 259 | 259 | * @param reference Reference to the array to search |
| 260 | 260 | * @param string Node we are looking for in the array |
| 261 | 261 | * @param string $node |
| 262 | - * @return mixed Node name or false if not found |
|
| 262 | + * @return false|string Node name or false if not found |
|
| 263 | 263 | */ |
| 264 | 264 | function myarraysearch(&$array, $node) |
| 265 | 265 | { |
@@ -280,7 +280,7 @@ discard block |
||
| 280 | 280 | * Searches an image name into an array. |
| 281 | 281 | * @param reference Reference to an array to search |
| 282 | 282 | * @param string String to look for |
| 283 | - * @return mixed String given if found, false otherwise |
|
| 283 | + * @return false|string String given if found, false otherwise |
|
| 284 | 284 | * @uses myarraysearch This function is just an additional layer on the myarraysearch() function |
| 285 | 285 | */ |
| 286 | 286 | function CheckImageName(&$imgparams, $string) |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | /** |
| 217 | 217 | * Import the aicc object (as a result from the parse_config_files function) into the database structure |
| 218 | 218 | * @param string $course_code |
| 219 | - * @return bool Returns -1 on error |
|
| 219 | + * @return false|null Returns -1 on error |
|
| 220 | 220 | */ |
| 221 | 221 | public function import_aicc($course_code) |
| 222 | 222 | { |
@@ -780,7 +780,8 @@ discard block |
||
| 780 | 780 | * Static function to parse AICC ini files. |
| 781 | 781 | * Based on work by sinedeo at gmail dot com published on php.net (parse_ini_file()). |
| 782 | 782 | * @param string File path |
| 783 | - * @return array Structured array |
|
| 783 | + * @param string $f |
|
| 784 | + * @return string Structured array |
|
| 784 | 785 | */ |
| 785 | 786 | function parse_ini_file_quotes_safe($f) { |
| 786 | 787 | $null = ''; |
@@ -831,7 +832,7 @@ discard block |
||
| 831 | 832 | * Based on work by sinedeo at gmail dot com published on php.net (parse_ini_file()). |
| 832 | 833 | * @param string INI File string |
| 833 | 834 | * @param array List of names of sections that should be considered as containing only hard string data (no variables), provided in lower case |
| 834 | - * @return array Structured array |
|
| 835 | + * @return string Structured array |
|
| 835 | 836 | */ |
| 836 | 837 | function parse_ini_string_quotes_safe($s, $pure_strings = array()) { |
| 837 | 838 | $null = ''; |
@@ -894,6 +895,7 @@ discard block |
||
| 894 | 895 | * @param string CSV delimiter |
| 895 | 896 | * @param string CSV enclosure |
| 896 | 897 | * @param boolean Might one field name happen more than once on the same line? (then split by comma in the values) |
| 898 | + * @param string $f |
|
| 897 | 899 | * @return array Simple structured array |
| 898 | 900 | */ |
| 899 | 901 | function parse_csv_file($f, $delim = ',', $enclosure = '"', $multiples = false) { |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | * @param int $categoryId |
| 35 | 35 | * @param bool $ignoreCategoryFilter |
| 36 | 36 | * |
| 37 | - * @return void |
|
| 37 | + * @return false|null |
|
| 38 | 38 | */ |
| 39 | 39 | public function __construct( |
| 40 | 40 | $user_id, |
@@ -20,9 +20,9 @@ |
||
| 20 | 20 | * @param int $user_id User ID |
| 21 | 21 | * @param int $view_id View ID |
| 22 | 22 | * @param int $item_id Item ID |
| 23 | - * @param float $score Current score |
|
| 24 | - * @param float $max Maximum score |
|
| 25 | - * @param float $min Minimum score |
|
| 23 | + * @param integer $score Current score |
|
| 24 | + * @param integer $max Maximum score |
|
| 25 | + * @param integer $min Minimum score |
|
| 26 | 26 | * @param string $status Lesson status |
| 27 | 27 | * @param int $time Session time |
| 28 | 28 | * @param string $suspend Suspend data |