2009-11-01 14:55:15 +00:00
|
|
|
<?php
|
2008-04-23 09:33:54 +00:00
|
|
|
/**
|
|
|
|
* Code fragment to define the version of feedback
|
|
|
|
* This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
|
|
*
|
|
|
|
* @author Andreas Grabs
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
|
|
|
* @package feedback
|
|
|
|
*/
|
|
|
|
|
2009-11-01 14:55:15 +00:00
|
|
|
|
2010-05-16 20:05:51 +00:00
|
|
|
$module->version = 2010051601; // The current module version (Date: YYYYMMDDXX)
|
|
|
|
$module->requires = 2010050414; // Requires this Moodle version
|
2008-04-23 09:33:54 +00:00
|
|
|
$feedback_version_intern = 1; //this version is used for restore older backups
|
|
|
|
$module->cron = 0; // Period for cron to check this module (secs)
|
|
|
|
|
2009-11-01 14:55:15 +00:00
|
|
|
|