Note: You are currently viewing documentation for Moodle 2.4. Up-to-date documentation for the latest stable version of Moodle may be available here: IMS content package.

IMS content package: Difference between revisions

From MoodleDocs
(IMS content package repository)
Line 3: Line 3:
IMS is a body which helps define technical standards for various things, including e-learning material. The [http://www.imsglobal.org/content/packaging/ IMS Content Packaging specification] makes it possible to store chunks of material in a standard format which can be re-used in different systems, without having to convert the material into new formats.
IMS is a body which helps define technical standards for various things, including e-learning material. The [http://www.imsglobal.org/content/packaging/ IMS Content Packaging specification] makes it possible to store chunks of material in a standard format which can be re-used in different systems, without having to convert the material into new formats.


Forthcoming in Moodle 1.6 is the ability to incorporate and deploy such "content packages" as easily as you might incorporate any other file.
The IMS content package in Moodle 1.6 enables such content packages to be uploaded and included in Moodle courses. In addition, the resource type supports an optional repository, enabling content packages to be shared between courses.
 
==IMS content package repository==
 
The IMS content package repository is disabled by default. It may be enabled as follows:
 
# Find repository_config.php in ''moodle/mod/resource/type/ims'' and change <code>$CFG->repositoryactivate = false;</code> to <code>$CFG->repositoryactivate = true</code>
# Create a folder named ''ims_repository'' in the webroot
# Change <code>$CFG->repository = "C:/public/www/html/ims_repository";</code> to point to this folder on your file system


==See also==
==See also==
Line 11: Line 19:


[[Category:Administrator]]
[[Category:Administrator]]
[[Category:Developer]]
[[Category:Resource]]
[[Category:Resource]]

Revision as of 10:15, 10 May 2006

Template:Moodle 1.6

IMS is a body which helps define technical standards for various things, including e-learning material. The IMS Content Packaging specification makes it possible to store chunks of material in a standard format which can be re-used in different systems, without having to convert the material into new formats.

The IMS content package in Moodle 1.6 enables such content packages to be uploaded and included in Moodle courses. In addition, the resource type supports an optional repository, enabling content packages to be shared between courses.

IMS content package repository

The IMS content package repository is disabled by default. It may be enabled as follows:

  1. Find repository_config.php in moodle/mod/resource/type/ims and change $CFG->repositoryactivate = false; to $CFG->repositoryactivate = true
  2. Create a folder named ims_repository in the webroot
  3. Change $CFG->repository = "C:/public/www/html/ims_repository"; to point to this folder on your file system

See also