id)) { if (!isteacheredit($course->id)) { error("You need to be a teacher or admin user to use this page.", "$CFG->wwwroot/login/index.php"); } } else { if (!isadmin()) { error("You need to be an admin user to use this page.", "$CFG->wwwroot/login/index.php"); } } //Check site if (!$site = get_site()) { error("Site not found!"); } //Checks for the required files/functions to backup every mod //And check if there is data about it $count = 0; if ($allmods = get_records("modules") ) { foreach ($allmods as $mod) { $modname = $mod->name; $modfile = "$CFG->dirroot/mod/$modname/backuplib.php"; $modbackup = $modname."_backup_mods"; $modcheckbackup = $modname."_check_backup_mods"; if (file_exists($modfile)) { include_once($modfile); if (function_exists($modbackup) and function_exists($modcheckbackup)) { $var = "exists_".$modname; $$var = true; $count++; } } //Check data //Check module info $var = "backup_".$modname; if (!isset($$var)) { $$var = 1; } //Check include user info $var = "backup_user_info_".$modname; if (!isset($$var)) { $$var = 1; } } } //Check other parameters if (!isset($backup_users)) { $backup_users = 1; } if (!isset($backup_logs)) { $backup_logs = 0; } if (!isset($backup_user_files)) { $backup_user_files = 1; } if (!isset($backup_course_files)) { $backup_course_files = 1; } if ($count == 0) { notice("No backupable modules are installed!"); } ?>
name; $modbackup = $modname."_backup_mods"; //If exists the lib & function $var = "exists_".$modname; if (isset($$var) && $$var) { //Print the full tr echo ""; echo ""; } } //Line echo ""; //Now print the Users tr echo ""; echo ""; //Now print the Logs tr echo ""; echo ""; //Now print the User Files tr echo ""; echo ""; //Now print the Course Files tr echo ""; echo ""; } ?>

"; echo get_string("include")." ". get_string("modulenameplural",$modname).":"; echo "

"; $backup_options[0] = get_string("no"); $backup_options[1] = get_string("yes"); $var = "backup_".$modname; choose_from_menu($backup_options, $var, $$var, ""); $backup_user_options[0] = get_string("withoutuserdata"); $backup_user_options[1] = get_string("withuserdata"); $var = "backup_user_info_".$modname; choose_from_menu($backup_user_options, $var, $$var, ""); echo "

"; echo get_string("users").":"; echo "

"; $user_options[0] = get_string("all"); $user_options[1] = get_string("course"); //$user_options[2] = get_string("needed");-->NOT IMPLEMENTED choose_from_menu($user_options, "backup_users", $backup_users, ""); echo "

"; echo get_string("logs").":"; echo "

"; $log_options[0] = get_string("no"); $log_options[1] = get_string("yes"); choose_from_menu($log_options, "backup_logs", $backup_logs, ""); echo "

"; echo get_string ("userfiles").":"; echo "

"; $user_file_options[0] = get_string("no"); $user_file_options[1] = get_string("yes"); choose_from_menu($user_file_options, "backup_user_files", $backup_user_files, ""); echo "

"; echo get_string ("coursefiles").":"; echo "

"; $course_file_options[0] = get_string("no"); $course_file_options[1] = get_string("yes"); choose_from_menu($course_file_options, "backup_course_files", $backup_course_files, ""); echo "

"> ">