diff --git a/local_outage/README.md b/local_outage/README.md deleted file mode 100644 index 866b575..0000000 --- a/local_outage/README.md +++ /dev/null @@ -1,6 +0,0 @@ -What is this? -------------- - -This is a local plugin used together with the auth plugin. - -You will only need it if you are using Moodle 2.8 or lower. diff --git a/local_outage/lang/en/local_outage.php b/local_outage/lang/en/local_outage.php deleted file mode 100644 index 5d08538..0000000 --- a/local_outage/lang/en/local_outage.php +++ /dev/null @@ -1,26 +0,0 @@ -. -// -/** - * Strings for component 'local_outage', language 'en'. - * - * @package auth_outage - * @author Daniel Thee Roperto - * @copyright 2016 Catalyst IT - * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later - */ - -$string['pluginname'] = 'Outage for Old Moodle'; diff --git a/local_outage/lib.php b/local_outage/lib.php deleted file mode 100644 index 7e38ca9..0000000 --- a/local_outage/lib.php +++ /dev/null @@ -1,42 +0,0 @@ -. - -/** - * local_outage plugin lib - * - * @package auth_outage - * @author Daniel Thee Roperto - * @copyright 2016 Catalyst IT - * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later - */ - -use auth_outage\local\outagelib; - -defined('MOODLE_INTERNAL') || die(); - -/** - * Used since Moodle 29. - */ -function local_outage_extend_navigation() { - outagelib::inject(); -} - -/** - * Used since Moodle 29. - */ -function local_outage_extend_settings_navigation() { - outagelib::inject(); -} diff --git a/local_outage/version.php b/local_outage/version.php deleted file mode 100644 index 71060ee..0000000 --- a/local_outage/version.php +++ /dev/null @@ -1,32 +0,0 @@ -. - -/** - * Version information. - * - * @package auth_outage - * @author Daniel Thee Roperto - * @copyright 2016 Catalyst IT - * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later - */ - -defined('MOODLE_INTERNAL') || die(); - -$plugin->component = "local_outage"; -$plugin->version = 2016092900; // The current plugin version (Date: YYYYMMDDXX). -$plugin->release = 'Build '.$plugin->version; // Human-readable release information. -$plugin->requires = 2014051200; // Requires Moodle 2.7 or later. -$plugin->maturity = MATURITY_STABLE; // Not suitable for PRODUCTION environments yet! diff --git a/version.php b/version.php index 927d31d..90ca7fb 100644 --- a/version.php +++ b/version.php @@ -28,7 +28,7 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = "auth_outage"; -$plugin->version = 2016101200; // The current plugin version (Date: YYYYMMDDXX). -$plugin->release = '1.0.2'; // Human-readable release information. +$plugin->version = 2016101400; // The current plugin version (Date: YYYYMMDDXX). +$plugin->release = '1.0.3'; // Human-readable release information. $plugin->requires = 2014051200; // Requires Moodle 2.7 or later. Moodle 2.9 or later recommended. $plugin->maturity = MATURITY_STABLE; // Suitable for PRODUCTION environments!