moodle/grade/report/user
Eloy Lafuente (stronk7) 9d6aa39985 MDL-71583 versions: Add all the missing full-stops to version/requires
It seems that the new phpcs3 checker is now controlling those
line comments that previously were ignored.

This commit just looks for all the cases and bulk-add
them when needed. The bash script (mac) used to add all them is:

while read -r line; do
    arr=(${line//:/ })
    if [[ -n ${arr[0]} ]] && [[ -n ${arr[1]} ]]; then
        echo "  file ${arr[0]}, line ${arr[1]}"
        sed -i "${arr[1]}s/\$/\./" ${arr[0]}
    fi
done < <(find . -name version.php | xargs ag --nomultiline '>(version|requires) *=.*//.*[^;\.]$')
2021-05-11 20:11:07 +02:00
..
classes MDL-61957 gradereport_user: Implement privacy API 2018-04-17 14:31:54 +02:00
db MDL-69308 upgrade: remove all the < 3.6.0 upgrade steps 2021-01-13 19:11:19 +01:00
lang/en MDL-61957 gradereport_user: Implement privacy API 2018-04-17 14:31:54 +02:00
tests MDL-71425 lang: Fix reworded strings in tests 2021-05-04 17:45:18 +02:00
externallib.php Merge branch 'MDL-71007-courseidnumer-grade-ws' of https://github.com/brendanheywood/moodle 2021-04-15 13:48:39 +08:00
index.php MDL-59169 gradebook: Add groupid to gpr tracking & use 2018-08-16 04:03:51 +02:00
lib.php MDL-71118 gradereport_user: Display Grades (plural) in profile page. 2021-04-17 11:46:09 +02:00
README.txt
renderer.php MDL-68233 renderers/block: remove illegal uses of $PAGE and $OUTPUT 2020-03-29 15:34:26 +01:00
settings.php MDL-47575 gradebook: Show weights and contribution by default. 2014-10-16 13:11:47 +08:00
styles.css MDL-30179 gradereport_user: Add ability to view report as other user 2016-10-10 09:03:11 -04:00
version.php MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00

The default gradebook interface for students, showing just the user's own grades.