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
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-07-27 06:07:49 +00:00
|
|
|
$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
|
|
|
|
|
|
|
?>
|
|
|
|
|