@@ -9,7 +9,7 @@ |
||
9 | 9 | /** |
10 | 10 | * Start a timer and hand it back to the JS by assigning the current time (of start) to |
11 | 11 | * var asset_timer |
12 | - * @return string JavaScript time intializer |
|
12 | + * @return integer JavaScript time intializer |
|
13 | 13 | */ |
14 | 14 | function start_timer() { |
15 | 15 | $time = time(); |
@@ -116,7 +116,7 @@ |
||
116 | 116 | * @param int $sessionId |
117 | 117 | * @param string $downloadCertificateLink |
118 | 118 | * @param string $badgeLink |
119 | - * @return mixed|string |
|
119 | + * @return string |
|
120 | 120 | */ |
121 | 121 | function generateLPFinalItemTemplate($lpItemId, $courseCode, $sessionId=0, $downloadCertificateLink='', $badgeLink='') |
122 | 122 | { |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | /** |
39 | 39 | * Gets html pages and compose them into a learning path |
40 | 40 | * @param array The files that will compose the generated learning path. Unused so far. |
41 | - * @return boolean False if file does not exit. Nothing otherwise. |
|
41 | + * @return false|null False if file does not exit. Nothing otherwise. |
|
42 | 42 | */ |
43 | 43 | public function make_lp($files = array()) |
44 | 44 | { |
@@ -92,6 +92,7 @@ discard block |
||
92 | 92 | * Manages chapter splitting |
93 | 93 | * @param string Chapter header |
94 | 94 | * @param string Content |
95 | + * @param string $content |
|
95 | 96 | * @return void |
96 | 97 | */ |
97 | 98 | function dealPerChapter($header, $content) |
@@ -164,6 +165,7 @@ discard block |
||
164 | 165 | * Manages page splitting |
165 | 166 | * @param string Page header |
166 | 167 | * @param string Page body |
168 | + * @param string $body |
|
167 | 169 | * @return void |
168 | 170 | */ |
169 | 171 | function dealPerPage($header, $body) |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | /** |
39 | 39 | * Gets html pages and compose them into a learning path |
40 | 40 | * @param array The files that will compose the generated learning path. Unused so far. |
41 | - * @return boolean False if file does not exit. Nothing otherwise. |
|
41 | + * @return false|null False if file does not exit. Nothing otherwise. |
|
42 | 42 | */ |
43 | 43 | public function make_lp($files = array()) |
44 | 44 | { |
@@ -92,6 +92,7 @@ discard block |
||
92 | 92 | * Manages chapter splitting |
93 | 93 | * @param string Chapter header |
94 | 94 | * @param string Content |
95 | + * @param string $content |
|
95 | 96 | * @return void |
96 | 97 | */ |
97 | 98 | function dealPerChapter($header, $content) |
@@ -164,6 +165,7 @@ discard block |
||
164 | 165 | * Manages page splitting |
165 | 166 | * @param string Page header |
166 | 167 | * @param string Page body |
168 | + * @param string $body |
|
167 | 169 | * @return void |
168 | 170 | */ |
169 | 171 | function dealPerPage($header, $body) |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | * @param int $userMaxScore |
272 | 272 | * @param int $sessionId |
273 | 273 | * |
274 | - * @return bool Returns -1 on error |
|
274 | + * @return boolean|null Returns -1 on error |
|
275 | 275 | */ |
276 | 276 | public function import_manifest($courseCode, $userMaxScore = 1, $sessionId = 0, $userId = 0) |
277 | 277 | { |
@@ -925,7 +925,7 @@ discard block |
||
925 | 925 | * @param string course Code |
926 | 926 | * @param string LP ID (in database) |
927 | 927 | * @param string Manifest file path (optional if lp_id defined) |
928 | - * @return integer New LP ID or false on failure |
|
928 | + * @return boolean New LP ID or false on failure |
|
929 | 929 | * TODO @TODO Implement imsmanifest_path parameter |
930 | 930 | */ |
931 | 931 | public function reimport_manifest($courseCode, $lp_id = null, $imsmanifest_path = '') |
@@ -1154,7 +1154,7 @@ discard block |
||
1154 | 1154 | /** |
1155 | 1155 | * Returns an array containing the list of options used to populate the gradebook_number_decimals variable |
1156 | 1156 | * This function is called through a call_user_func() in the generate_settings_form function. |
1157 | - * @return array List of gradebook_number_decimals options |
|
1157 | + * @return string[] List of gradebook_number_decimals options |
|
1158 | 1158 | * |
1159 | 1159 | * @author Guillaume Viguier <[email protected]> |
1160 | 1160 | */ |
@@ -1575,8 +1575,9 @@ discard block |
||
1575 | 1575 | } |
1576 | 1576 | /** |
1577 | 1577 | * Helper function to generates a form elements group |
1578 | - * @param object $form The form where the elements group has to be added |
|
1578 | + * @param FormValidator $form The form where the elements group has to be added |
|
1579 | 1579 | * @param array $values Values to browse through |
1580 | + * @param string $elementName |
|
1580 | 1581 | * @return array |
1581 | 1582 | */ |
1582 | 1583 | function formGenerateElementsGroup($form, $values = array(), $elementName) |
@@ -1592,7 +1593,7 @@ discard block |
||
1592 | 1593 | } |
1593 | 1594 | /** |
1594 | 1595 | * Helper function with allowed file types for CSS |
1595 | - * @return array Array of file types (no indexes) |
|
1596 | + * @return string[] Array of file types (no indexes) |
|
1596 | 1597 | */ |
1597 | 1598 | function getAllowedFileTypes() |
1598 | 1599 | { |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | * Add attendances sheet inside table. This is the *list of* dates, not |
278 | 278 | * a specific date in itself. |
279 | 279 | * @param bool true for adding link in gradebook or false otherwise (optional) |
280 | - * @return int last attendance id |
|
280 | + * @return false|string last attendance id |
|
281 | 281 | */ |
282 | 282 | public function attendance_add($link_to_gradebook = false) |
283 | 283 | { |
@@ -354,6 +354,7 @@ discard block |
||
354 | 354 | * edit attendances inside table |
355 | 355 | * @param int attendance id |
356 | 356 | * @param bool true for adding link in gradebook or false otherwise (optional) |
357 | + * @param integer $attendance_id |
|
357 | 358 | * @return int last id |
358 | 359 | */ |
359 | 360 | public function attendance_edit($attendance_id, $link_to_gradebook = false) |
@@ -429,6 +430,7 @@ discard block |
||
429 | 430 | /** |
430 | 431 | * Restore attendance |
431 | 432 | * @param int|array one or many attendances id |
433 | + * @param integer $attendance_id |
|
432 | 434 | * @return int affected rows |
433 | 435 | */ |
434 | 436 | public function attendance_restore($attendance_id) |
@@ -530,7 +532,7 @@ discard block |
||
530 | 532 | |
531 | 533 | /** |
532 | 534 | * Changes visibility |
533 | - * @param int|array $attendanceId one or many attendances id |
|
535 | + * @param integer $attendanceId one or many attendances id |
|
534 | 536 | * @param int status |
535 | 537 | * |
536 | 538 | * @return int affected rows |
@@ -585,6 +587,7 @@ discard block |
||
585 | 587 | * Lock or unlock an attendance |
586 | 588 | * @param int attendance id |
587 | 589 | * @param bool True to lock or false otherwise |
590 | + * @param integer $attendance_id |
|
588 | 591 | */ |
589 | 592 | public function lock_attendance($attendance_id, $lock = true) |
590 | 593 | { |
@@ -917,7 +920,11 @@ discard block |
||
917 | 920 | * @param string Event type ('locked_attendance', 'done_attendance_sheet' ...) |
918 | 921 | * @param int Last edit user id |
919 | 922 | * @param string Calendar datetime value (optional, when event type is 'done_attendance_sheet') |
920 | - * @return int Affected rows |
|
923 | + * @param integer $attendance_id |
|
924 | + * @param string $lastedit_date |
|
925 | + * @param string $lastedit_type |
|
926 | + * @param integer $lastedit_user_id |
|
927 | + * @return false|string Affected rows |
|
921 | 928 | */ |
922 | 929 | public function save_attendance_sheet_log( |
923 | 930 | $attendance_id, |
@@ -962,6 +969,7 @@ discard block |
||
962 | 969 | /** |
963 | 970 | * Get number of done attendances inside current sheet |
964 | 971 | * @param int attendance id |
972 | + * @param integer $attendance_id |
|
965 | 973 | * @return int number of done attendances |
966 | 974 | */ |
967 | 975 | public static function get_done_attendance_calendar($attendance_id) |
@@ -1197,6 +1205,7 @@ discard block |
||
1197 | 1205 | /** |
1198 | 1206 | * Get next attendance calendar without presences (done attendances) |
1199 | 1207 | * @param int attendance id |
1208 | + * @param integer $attendance_id |
|
1200 | 1209 | * @return int attendance calendar id |
1201 | 1210 | */ |
1202 | 1211 | public function get_next_attendance_calendar_id($attendance_id) |
@@ -1225,6 +1234,7 @@ discard block |
||
1225 | 1234 | /** |
1226 | 1235 | * Get next attendance calendar datetime without presences (done attendances) |
1227 | 1236 | * @param int attendance id |
1237 | + * @param integer $attendance_id |
|
1228 | 1238 | * @return int UNIX time format datetime |
1229 | 1239 | */ |
1230 | 1240 | public function get_next_attendance_calendar_datetime($attendance_id) |
@@ -1253,6 +1263,7 @@ discard block |
||
1253 | 1263 | * Get user' score from current attendance |
1254 | 1264 | * @param int $user_id |
1255 | 1265 | * @param int $attendance_id |
1266 | + * @param integer $groupId |
|
1256 | 1267 | * @return int score |
1257 | 1268 | */ |
1258 | 1269 | public function get_user_score($user_id, $attendance_id, $groupId = null) |
@@ -1300,6 +1311,7 @@ discard block |
||
1300 | 1311 | /** |
1301 | 1312 | * Get attendance calendar data by id |
1302 | 1313 | * @param int attendance calendar id |
1314 | + * @param integer $calendar_id |
|
1303 | 1315 | * @return array attendance calendar data |
1304 | 1316 | */ |
1305 | 1317 | public function get_attendance_calendar_by_id($calendar_id) |
@@ -1422,6 +1434,7 @@ discard block |
||
1422 | 1434 | * Get number of attendance calendar inside current attendance |
1423 | 1435 | * @param int $attendance_id |
1424 | 1436 | * @param int $groupId |
1437 | + * @param boolean $done_attendance |
|
1425 | 1438 | * @return int number of dates in attendance calendar |
1426 | 1439 | */ |
1427 | 1440 | public static function get_number_of_attendance_calendar($attendance_id, $groupId = 0, $done_attendance = NULL, $userId = 0) |
@@ -1647,7 +1660,6 @@ discard block |
||
1647 | 1660 | /** |
1648 | 1661 | * @param int $calendarId |
1649 | 1662 | * @param int $courseId |
1650 | - * @param int $groupId |
|
1651 | 1663 | * @return array |
1652 | 1664 | */ |
1653 | 1665 | public function getGroupListByAttendanceCalendar($calendarId, $courseId) |
@@ -1687,7 +1699,6 @@ discard block |
||
1687 | 1699 | /** |
1688 | 1700 | * @param int $calendarId |
1689 | 1701 | * @param int $courseId |
1690 | - * @param int $groupId |
|
1691 | 1702 | * |
1692 | 1703 | * @return array |
1693 | 1704 | */ |
@@ -1788,6 +1799,8 @@ discard block |
||
1788 | 1799 | * edit a datetime inside attendance calendar table |
1789 | 1800 | * @param int attendance calendar id |
1790 | 1801 | * @param int attendance id |
1802 | + * @param integer $calendar_id |
|
1803 | + * @param integer $attendance_id |
|
1791 | 1804 | * @return int affected rows |
1792 | 1805 | */ |
1793 | 1806 | public function attendance_calendar_edit($calendar_id, $attendance_id) |
@@ -1827,6 +1840,8 @@ discard block |
||
1827 | 1840 | * @param int attendance calendar id |
1828 | 1841 | * @param int attendance id |
1829 | 1842 | * @param bool true for removing all calendar inside current attendance, false for removing by calendar id |
1843 | + * @param integer $calendar_id |
|
1844 | + * @param integer $attendance_id |
|
1830 | 1845 | * @return int affected rows |
1831 | 1846 | */ |
1832 | 1847 | public function attendance_calendar_delete($calendar_id, $attendance_id , $all_delete = false) |
@@ -1889,6 +1904,9 @@ discard block |
||
1889 | 1904 | $this->course_id = $course_id; |
1890 | 1905 | } |
1891 | 1906 | |
1907 | + /** |
|
1908 | + * @param string $datetime |
|
1909 | + */ |
|
1892 | 1910 | public function set_date_time($datetime) |
1893 | 1911 | { |
1894 | 1912 | $this->date_time = $datetime; |
@@ -84,7 +84,7 @@ |
||
84 | 84 | |
85 | 85 | /** |
86 | 86 | * Available driver list. |
87 | - * @return array |
|
87 | + * @return string[] |
|
88 | 88 | */ |
89 | 89 | private function getDefaultDriverList() |
90 | 90 | { |
@@ -38,7 +38,7 @@ |
||
38 | 38 | } |
39 | 39 | |
40 | 40 | /** |
41 | - * @return bool |
|
41 | + * @return false|null |
|
42 | 42 | */ |
43 | 43 | public function create_user_folder() |
44 | 44 | { |