moodle/mod/assignment/version.php

23 lines
561 B
PHP
Raw Normal View History

2001-11-22 06:23:56 +00:00
<?PHP // $Id$
////////////////////////////////////////////////////////////////////////////////
// Code fragment to define the module version etc.
// This fragment is called by /admin/index.php
////////////////////////////////////////////////////////////////////////////////
$module->fullname = "Assignment";
$module->version = 20020801;
$module->cron = 60;
$module->search = "";
function assignment_upgrade($oldversion) {
// This function does anything necessary to upgrade
// older versions to match current functionality
return true;
}
2001-11-22 06:23:56 +00:00
?>