From 459313e56b0653e4709694a7e86afc11be514097 Mon Sep 17 00:00:00 2001 From: Jan Klemkow Date: Tue, 9 Oct 2012 14:01:58 +0200 Subject: add dummy module --- sqlbox/version.php | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 sqlbox/version.php (limited to 'sqlbox/version.php') diff --git a/sqlbox/version.php b/sqlbox/version.php new file mode 100644 index 0000000..dc1f915 --- /dev/null +++ b/sqlbox/version.php @@ -0,0 +1,37 @@ +. + + +/** + * Defines the version of newmodule + * + * This code fragment is called by moodle_needs_upgrading() and + * /admin/index.php + * + * @package mod + * @subpackage newmodule + * @copyright 2011 Your Name + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +defined('MOODLE_INTERNAL') || die(); + +$module->version = 0; // If version == 0 then module will not be installed +//$module->version = 2010032200; // The current module version (Date: YYYYMMDDXX) +$module->requires = 2010031900; // Requires this Moodle version +$module->cron = 0; // Period for cron to check this module (secs) +$module->component = 'mod_newmodule'; // To check on upgrade, that module sits in correct place -- cgit