mirror of
https://github.com/moodle/moodle.git
synced 2025-01-22 16:18:24 +01:00
7ea53a1fb1
derived from the string 'modulename' in the lang files for each module.
21 lines
503 B
PHP
21 lines
503 B
PHP
<?PHP // $Id$
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Code fragment to define the module version etc.
|
|
// This fragment is called by /admin/index.php
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
$module->version = 20020801;
|
|
$module->cron = 60;
|
|
|
|
function assignment_upgrade($oldversion) {
|
|
// This function does anything necessary to upgrade
|
|
// older versions to match current functionality
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
?>
|
|
|