From 8ff9b0b3e354c4e14a12b51309022307fa5a9a32 Mon Sep 17 00:00:00 2001 From: Marcus Boon <(none)> Date: Mon, 22 Aug 2016 12:38:16 +1000 Subject: [PATCH] WR#259574: Added version.php --- version.php | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 version.php diff --git a/version.php b/version.php new file mode 100644 index 0000000..cc0bfe0 --- /dev/null +++ b/version.php @@ -0,0 +1,35 @@ +. + +/** + * Version information. + * + * @package auth_outage + * @author Marcus Boon + * @author Brendan Heywood + * @copyright Catalyst IT + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +if (!defined('MOODLE_INTERNAL')) { + die('Direct access to this script is forbidden.'); // It must be included from a Moodle page. +} + +$plugin->version = 2016082200; // The current plugin version (Date: YYYYMMDDXX). +$plugin->release = 2016082200; // Same as version +$plugin->requires = 2014051200; // Requires Moodle 2.7 or later. +$plugin->component = "auth_outage"; +$plugin->maturity = MATURITY_ALPHA; // Not suitable for PRODUCTION environments yet!