Added new fields to backup/restore

This commit is contained in:
stronk7 2004-09-05 09:47:05 +00:00
parent a06f9887da
commit b9aa568912
2 changed files with 4 additions and 0 deletions

View File

@ -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)

View File

@ -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);