2006-08-08 22:09:55 +00:00
|
|
|
<?php // $Id$
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Code fragment to define the version of scorm
|
|
|
|
/// This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-09-27 16:45:40 +00:00
|
|
|
|
2008-09-09 08:30:00 +00:00
|
|
|
// NOTE The version below was accidentally set a month into the future! We need to
|
|
|
|
// catch up now, so until 27th October please only increment in very tiny steps
|
2006-09-27 16:45:40 +00:00
|
|
|
// in HEAD, until we get past that date..
|
|
|
|
|
2008-12-14 23:45:54 +00:00
|
|
|
$module->version = 2008090310; // The (date) version of this module
|
2008-09-09 08:30:00 +00:00
|
|
|
$module->requires = 2008090108; // The version of Moodle that is required
|
2007-01-18 12:05:14 +00:00
|
|
|
$module->cron = 300; // How often should cron check this module (seconds)?
|
2006-08-08 22:09:55 +00:00
|
|
|
|
2008-08-01 02:32:36 +00:00
|
|
|
?>
|