2006-01-25 07:31:37 +00:00
|
|
|
<?PHP // $Id$
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Code fragment to define the version of hotpot
|
|
|
|
/// This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
2006-12-17 02:27:40 +00:00
|
|
|
$module->version = 2006120100; // release date of this version (see note below)
|
|
|
|
$module->release = 'v2.3.0'; // human-friendly version name (used in mod/hotpot/lib.php)
|
2006-08-08 22:09:55 +00:00
|
|
|
$module->requires = 2006080900; // Requires this Moodle version
|
2006-07-31 18:10:02 +00:00
|
|
|
$module->cron = 0; // period for cron to check this module (secs)
|
2006-01-25 07:31:37 +00:00
|
|
|
// interpretation of YYYYMMDDXY version numbers
|
|
|
|
// YYYY : year
|
|
|
|
// MM : month
|
|
|
|
// DD : day
|
|
|
|
// X : point release version 1,2,3 etc
|
|
|
|
// Y : increment between point releases
|
|
|
|
?>
|