Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
integration
prechecker
Commits
e1efcbd1
Commit
e1efcbd1
authored
Sep 17, 2015
by
Simey Lameze
Committed by
David Monllaó
Sep 17, 2015
Browse files
MDL-50959 gradebook: fix XML grade export
parent
193f5d40
Changes
1
Hide whitespace changes
Inline
Side-by-side
grade/export/xml/grade_export_xml.php
View file @
e1efcbd1
...
...
@@ -68,7 +68,6 @@ class grade_export_xml extends grade_export {
foreach
(
$userdata
->
grades
as
$itemid
=>
$grade
)
{
$grade_item
=
$this
->
grade_items
[
$itemid
];
$grade
->
grade_item
=&
$grade_item
;
$gradestr
=
$this
->
format_grade
(
$grade
,
$this
->
displaytype
);
// no formating for now
// MDL-11669, skip exported grades or bad grades (if setting says so)
if
(
$export_tracking
)
{
...
...
@@ -90,10 +89,15 @@ class grade_export_xml extends grade_export {
fwrite
(
$handle
,
"
\t\t
<student>
{
$user
->
idnumber
}
</student>
\n
"
);
// Format and display the grade in the selected display type (real, letter, percentage).
if
(
is_array
(
$this
->
displaytype
))
{
// Grades display type came from the return of export_bulk_export_data() on grade publishing.
foreach
(
$this
->
displaytype
as
$gradedisplayconst
)
{
$gradestr
=
$this
->
format_grade
(
$grade
,
$gradedisplayconst
);
fwrite
(
$handle
,
"
\t\t
<score>
$gradestr
</score>
\n
"
);
}
}
else
{
// Grade display type submitted directly from the grade export form.
$gradestr
=
$this
->
format_grade
(
$grade
,
$this
->
displaytype
);
fwrite
(
$handle
,
"
\t\t
<score>
$gradestr
</score>
\n
"
);
}
if
(
$this
->
export_feedback
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment