mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
Added "graphical structure".
Added label_get_participants() function.
This commit is contained in:
parent
27a026c7e8
commit
2b9f062552
3 changed files with 36 additions and 1 deletions
|
@ -2,6 +2,20 @@
|
||||||
//This php script contains all the stuff to backup/restore
|
//This php script contains all the stuff to backup/restore
|
||||||
//label mods
|
//label mods
|
||||||
|
|
||||||
|
//This is the "graphical" structure of the label mod:
|
||||||
|
//
|
||||||
|
// label
|
||||||
|
// (CL,pk->id)
|
||||||
|
//
|
||||||
|
// Meaning: pk->primary key field of the table
|
||||||
|
// fk->foreign key to link with parent
|
||||||
|
// nt->nested field (recursive data)
|
||||||
|
// CL->course level info
|
||||||
|
// UL->user level info
|
||||||
|
// files->table may have files)
|
||||||
|
//
|
||||||
|
//-----------------------------------------------------------
|
||||||
|
|
||||||
//This function executes all the backup procedure about this mod
|
//This function executes all the backup procedure about this mod
|
||||||
function label_backup_mods($bf,$preferences) {
|
function label_backup_mods($bf,$preferences) {
|
||||||
global $CFG;
|
global $CFG;
|
||||||
|
|
|
@ -72,4 +72,11 @@ function label_user_complete($course, $user, $mod, $label) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function label_get_participants($labelid) {
|
||||||
|
//Returns the users with data in one resource
|
||||||
|
//(NONE, byt must exists on EVERY mod !!)
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -2,6 +2,20 @@
|
||||||
//This php script contains all the stuff to backup/restore
|
//This php script contains all the stuff to backup/restore
|
||||||
//label mods
|
//label mods
|
||||||
|
|
||||||
|
//This is the "graphical" structure of the label mod:
|
||||||
|
//
|
||||||
|
// label
|
||||||
|
// (CL,pk->id)
|
||||||
|
//
|
||||||
|
// Meaning: pk->primary key field of the table
|
||||||
|
// fk->foreign key to link with parent
|
||||||
|
// nt->nested field (recursive data)
|
||||||
|
// CL->course level info
|
||||||
|
// UL->user level info
|
||||||
|
// files->table may have files)
|
||||||
|
//
|
||||||
|
//-----------------------------------------------------------
|
||||||
|
|
||||||
//This function executes all the restore procedure about this mod
|
//This function executes all the restore procedure about this mod
|
||||||
function label_restore_mods($mod,$restore) {
|
function label_restore_mods($mod,$restore) {
|
||||||
|
|
||||||
|
@ -19,7 +33,7 @@
|
||||||
//print_object ($GLOBALS['traverse_array']); //Debug
|
//print_object ($GLOBALS['traverse_array']); //Debug
|
||||||
//$GLOBALS['traverse_array']=""; //Debug
|
//$GLOBALS['traverse_array']=""; //Debug
|
||||||
|
|
||||||
//Now, build the RESOURCE record structure
|
//Now, build the LABEL record structure
|
||||||
$label->course = $restore->course_id;
|
$label->course = $restore->course_id;
|
||||||
$label->name = backup_todb($info['MOD']['#']['NAME']['0']['#']);
|
$label->name = backup_todb($info['MOD']['#']['NAME']['0']['#']);
|
||||||
$label->content = backup_todb($info['MOD']['#']['CONTENT']['0']['#']);
|
$label->content = backup_todb($info['MOD']['#']['CONTENT']['0']['#']);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue