mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 12:40:01 +01:00
Added suppor for assignment->emailteachers
This commit is contained in:
parent
c3f5569273
commit
626138c9b6
@ -15,7 +15,7 @@ Now I show the specific detailed status of every item in the process:
|
|||||||
5. DONE: user_teachers->enrol (analyse and proceed).
|
5. DONE: user_teachers->enrol (analyse and proceed).
|
||||||
6. DONE: user->policyagreed (analyse and proceed).
|
6. DONE: user->policyagreed (analyse and proceed).
|
||||||
7. DONE: groups->password
|
7. DONE: groups->password
|
||||||
8. TODO: assignment->emailteachers
|
8. DONE: assignment->emailteachers
|
||||||
9. TODO: exercise->usepassword and exercise->password
|
9. TODO: exercise->usepassword and exercise->password
|
||||||
10. TODO: exercise_assessments->generalcomment and teachercomment
|
10. TODO: exercise_assessments->generalcomment and teachercomment
|
||||||
11. TODO: glossary->allowprintview
|
11. TODO: glossary->allowprintview
|
||||||
|
@ -41,6 +41,7 @@
|
|||||||
fwrite ($bf,full_tag("DESCRIPTION",4,false,$assignment->description));
|
fwrite ($bf,full_tag("DESCRIPTION",4,false,$assignment->description));
|
||||||
fwrite ($bf,full_tag("FORMAT",4,false,$assignment->format));
|
fwrite ($bf,full_tag("FORMAT",4,false,$assignment->format));
|
||||||
fwrite ($bf,full_tag("RESUBMIT",4,false,$assignment->resubmit));
|
fwrite ($bf,full_tag("RESUBMIT",4,false,$assignment->resubmit));
|
||||||
|
fwrite ($bf,full_tag("EMAILTEACHERS",4,false,$assignment->emailteachers));
|
||||||
fwrite ($bf,full_tag("TYPE",4,false,$assignment->type));
|
fwrite ($bf,full_tag("TYPE",4,false,$assignment->type));
|
||||||
fwrite ($bf,full_tag("MAXBYTES",4,false,$assignment->maxbytes));
|
fwrite ($bf,full_tag("MAXBYTES",4,false,$assignment->maxbytes));
|
||||||
fwrite ($bf,full_tag("TIMEDUE",4,false,$assignment->timedue));
|
fwrite ($bf,full_tag("TIMEDUE",4,false,$assignment->timedue));
|
||||||
|
@ -44,6 +44,7 @@
|
|||||||
$assignment->description = backup_todb($info['MOD']['#']['DESCRIPTION']['0']['#']);
|
$assignment->description = backup_todb($info['MOD']['#']['DESCRIPTION']['0']['#']);
|
||||||
$assignment->format = backup_todb($info['MOD']['#']['FORMAT']['0']['#']);
|
$assignment->format = backup_todb($info['MOD']['#']['FORMAT']['0']['#']);
|
||||||
$assignment->resubmit = backup_todb($info['MOD']['#']['RESUBMIT']['0']['#']);
|
$assignment->resubmit = backup_todb($info['MOD']['#']['RESUBMIT']['0']['#']);
|
||||||
|
$assignment->emailteachers = backup_todb($info['MOD']['#']['EMAILTEACHERS']['0']['#']);
|
||||||
$assignment->type = backup_todb($info['MOD']['#']['TYPE']['0']['#']);
|
$assignment->type = backup_todb($info['MOD']['#']['TYPE']['0']['#']);
|
||||||
$assignment->maxbytes = backup_todb($info['MOD']['#']['MAXBYTES']['0']['#']);
|
$assignment->maxbytes = backup_todb($info['MOD']['#']['MAXBYTES']['0']['#']);
|
||||||
$assignment->timedue = backup_todb($info['MOD']['#']['TIMEDUE']['0']['#']);
|
$assignment->timedue = backup_todb($info['MOD']['#']['TIMEDUE']['0']['#']);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user