mirror of
https://github.com/moodle/moodle.git
synced 2025-02-01 13:28:17 +01:00
Added new fields to backup/restore
This commit is contained in:
parent
a06f9887da
commit
b9aa568912
@ -65,6 +65,8 @@
|
||||
fwrite ($bf,full_tag("GRADE",4,false,$exercise->grade));
|
||||
fwrite ($bf,full_tag("GRADINGGRADE",4,false,$exercise->gradinggrade));
|
||||
fwrite ($bf,full_tag("SHOWLEAGUETABLE",4,false,$exercise->showleaguetable));
|
||||
fwrite ($bf,full_tag("USEPASSWORD",4,false,$exercise->usepassword));
|
||||
fwrite ($bf,full_tag("PASSWORD",4,false,$exercise->password));
|
||||
//Now we backup exercise elements
|
||||
$status = backup_exercise_elements($bf,$preferences,$exercise->id);
|
||||
//Now we backup any teacher submissions (these are an integral part of the exercise)
|
||||
|
@ -68,6 +68,8 @@
|
||||
$exercise->grade = backup_todb($info['MOD']['#']['GRADE']['0']['#']);
|
||||
$exercise->gradinggrade = backup_todb($info['MOD']['#']['GRADINGGRADE']['0']['#']);
|
||||
$exercise->showleaguetable = backup_todb($info['MOD']['#']['SHOWLEAGUETABLE']['0']['#']);
|
||||
$exercise->usepassword = backup_todb($info['MOD']['#']['USEPASSWORD']['0']['#']);
|
||||
$exercise->password = backup_todb($info['MOD']['#']['PASSWORD']['0']['#']);
|
||||
|
||||
//The structure is equal to the db, so insert the exercise
|
||||
$newid = insert_record ("exercise",$exercise);
|
||||
|
Loading…
x
Reference in New Issue
Block a user