Browse Source

Fix some phpdocs

MOODLE_29_STABLE
Dan Marsden 9 years ago
parent
commit
7d2b04310c
  1. 10
      locallib.php

10
locallib.php

@ -191,8 +191,9 @@ function attendance_get_user_courses_attendances($userid) {
/** /**
* Used to caclulate usergrade based on rawgrade and max grade. * Used to caclulate usergrade based on rawgrade and max grade.
* *
* @param $grade - raw grade for user * @param float $grade - raw grade for user
* @param $maxgrade - maxgrade for this session. * @param float $maxgrade - maxgrade for this session.
* @return float the calculated grade.
*/ */
function attendance_calc_user_grade_fraction($grade, $maxgrade) { function attendance_calc_user_grade_fraction($grade, $maxgrade) {
if ($maxgrade == 0) { if ($maxgrade == 0) {
@ -205,8 +206,9 @@ function attendance_calc_user_grade_fraction($grade, $maxgrade) {
/** /**
* Update all user grades - used when settings have changed. * Update all user grades - used when settings have changed.
* *
* @param $attendance * @param mod_attendance_structure $attendance - Full attendance class.
* @param $coursemodule * @param stdclass $coursemodule - full coursemodule record
* @return float the calculated grade.
*/ */
function attendance_update_all_users_grades(mod_attendance_structure $attendance, $coursemodule) { function attendance_update_all_users_grades(mod_attendance_structure $attendance, $coursemodule) {
$grades = array(); $grades = array();

Loading…
Cancel
Save