Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Gradebook import: Difference between revisions

From MoodleDocs
No edit summary
No edit summary
Line 1: Line 1:
write me
== Introduction ==
 
This document is for developers wanting to allow users to import Moodle grade information in a format that is not currently supported by Moodle. Here is another document if you are looking for [https://docs.moodle.org/en/Grade_import an introduction to importing grades into Moodle]
 
Moodle allows authorised users to import grade information. This can be used to transfer student grades from another piece of software into Moodle.
 
Since 1.9 the Moodle gradebook has provided support for the addition of plug-in import modules to allow Moodle to import grade information in new or custom formats. Moodle includes two default gradebook import modules, csv and xml.
 
This document describes how to implement a custom gradebook import plug-in.
 
== Getting started ==
 
The gradebook import modules are located in the '''grade/import''' directory.  To create a new gradebook import module complete the steps listed below.
 
'''Note''': For the remainder of this topic when you see [newimport], replace it with the short name you chose for your export. Do not include the [].  Moodle comes with the following import modules: csv and xml so you cannot use those names.


== See also ==
== See also ==

Revision as of 03:56, 30 January 2012

Introduction

This document is for developers wanting to allow users to import Moodle grade information in a format that is not currently supported by Moodle. Here is another document if you are looking for an introduction to importing grades into Moodle

Moodle allows authorised users to import grade information. This can be used to transfer student grades from another piece of software into Moodle.

Since 1.9 the Moodle gradebook has provided support for the addition of plug-in import modules to allow Moodle to import grade information in new or custom formats. Moodle includes two default gradebook import modules, csv and xml.

This document describes how to implement a custom gradebook import plug-in.

Getting started

The gradebook import modules are located in the grade/import directory. To create a new gradebook import module complete the steps listed below.

Note: For the remainder of this topic when you see [newimport], replace it with the short name you chose for your export. Do not include the []. Moodle comes with the following import modules: csv and xml so you cannot use those names.

See also