From 9e059371ff238aeb82132fbc52d92a7b1a0b7ba6 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 5 Jun 2018 02:14:45 +0400 Subject: Plug-in description file Signed-off-by: Valentin Popov --- version.php | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 version.php (limited to 'version.php') diff --git a/version.php b/version.php new file mode 100644 index 0000000..88813b0 --- /dev/null +++ b/version.php @@ -0,0 +1,31 @@ +. + +/** + * Information about the version of the plugin. + * + * @package tool_apisiteadmins + * @copyright 2018 "Valentin Popov" + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +defined("MOODLE_INTERNAL") || die(); + +$plugin->component = "tool_apisiteadmins"; +$plugin->maturity = MATURITY_ALPHA; +$plugin->release = "0.0.0-alpha.1 (Build: 2018060400)"; +$plugin->requires = 2016112900; +$plugin->version = 2018060400; -- cgit v1.2.3 From a6682c8ce4354be047d0cdb872e53ab76da8deba Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Wed, 6 Jun 2018 16:37:29 +0400 Subject: Update the description Signed-off-by: Valentin Popov --- lang/en/tool_apisiteadmins.php | 6 +++--- lang/ru/tool_apisiteadmins.php | 6 +++--- version.php | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) (limited to 'version.php') diff --git a/lang/en/tool_apisiteadmins.php b/lang/en/tool_apisiteadmins.php index b96503f..0c0ea4b 100644 --- a/lang/en/tool_apisiteadmins.php +++ b/lang/en/tool_apisiteadmins.php @@ -17,9 +17,9 @@ /** * Strings for component 'tool_apisiteadmins', language 'en'. * - * @package tool_apisiteadmins - * @copyright 2018 "Valentin Popov" - * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + * @copyright 2018 "Valentin Popov" + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + * @package tool_apisiteadmins */ $string["pluginname"] = "Advanced API administration management"; diff --git a/lang/ru/tool_apisiteadmins.php b/lang/ru/tool_apisiteadmins.php index 14cdd25..830058a 100644 --- a/lang/ru/tool_apisiteadmins.php +++ b/lang/ru/tool_apisiteadmins.php @@ -17,9 +17,9 @@ /** * Strings for component 'tool_apisiteadmins', language 'ru'. * - * @package tool_apisiteadmins - * @copyright 2018 "Valentin Popov" - * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + * @copyright 2018 "Valentin Popov" + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + * @package tool_apisiteadmins */ $string["pluginname"] = "Расширенный API управления администраторами"; diff --git a/version.php b/version.php index 88813b0..8b274f2 100644 --- a/version.php +++ b/version.php @@ -17,9 +17,9 @@ /** * Information about the version of the plugin. * - * @package tool_apisiteadmins - * @copyright 2018 "Valentin Popov" - * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + * @copyright 2018 "Valentin Popov" + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + * @package tool_apisiteadmins */ defined("MOODLE_INTERNAL") || die(); -- cgit v1.2.3 From 902309163ea83d6440b5bcfada58e7006b0fc871 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Mon, 11 Jun 2018 15:05:20 +0400 Subject: Update version Signed-off-by: Valentin Popov --- version.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'version.php') diff --git a/version.php b/version.php index 8b274f2..21a36bb 100644 --- a/version.php +++ b/version.php @@ -25,7 +25,7 @@ defined("MOODLE_INTERNAL") || die(); $plugin->component = "tool_apisiteadmins"; -$plugin->maturity = MATURITY_ALPHA; -$plugin->release = "0.0.0-alpha.1 (Build: 2018060400)"; -$plugin->requires = 2016112900; -$plugin->version = 2018060400; +$plugin->maturity = MATURITY_STABLE; +$plugin->release = "1.0.0 (Build: 2018061100)"; +$plugin->requires = 2015050500; +$plugin->version = 2018061100; -- cgit v1.2.3 From 62c0ddbcd27f93fd9e2882dd035ab83a848ee3c4 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Mon, 11 Jun 2018 19:00:07 +0400 Subject: Fix check MOODLE_INTERNAL Signed-off-by: Valentin Popov --- classes/event/administrator_added.php | 2 +- classes/event/administrator_changed.php | 2 +- classes/event/administrator_deleted.php | 2 +- db/services.php | 2 +- externallib.php | 2 +- lib.php | 2 +- tests/api_test.php | 2 +- tests/external_test.php | 2 +- version.php | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) (limited to 'version.php') diff --git a/classes/event/administrator_added.php b/classes/event/administrator_added.php index 509f1b6..dd1aab2 100644 --- a/classes/event/administrator_added.php +++ b/classes/event/administrator_added.php @@ -24,7 +24,7 @@ namespace tool_apisiteadmins\event; -defined("MOODLE_INTERNAL") || die(); +defined('MOODLE_INTERNAL') || die(); /** * Defines how to work with events. diff --git a/classes/event/administrator_changed.php b/classes/event/administrator_changed.php index 97966f8..4280d1d 100644 --- a/classes/event/administrator_changed.php +++ b/classes/event/administrator_changed.php @@ -24,7 +24,7 @@ namespace tool_apisiteadmins\event; -defined("MOODLE_INTERNAL") || die(); +defined('MOODLE_INTERNAL') || die(); /** * Defines how to work with events. diff --git a/classes/event/administrator_deleted.php b/classes/event/administrator_deleted.php index 944dab5..81b89b9 100644 --- a/classes/event/administrator_deleted.php +++ b/classes/event/administrator_deleted.php @@ -24,7 +24,7 @@ namespace tool_apisiteadmins\event; -defined("MOODLE_INTERNAL") || die(); +defined('MOODLE_INTERNAL') || die(); /** * Defines how to work with events. diff --git a/db/services.php b/db/services.php index da355b3..7212a72 100644 --- a/db/services.php +++ b/db/services.php @@ -22,7 +22,7 @@ * @package tool_apisiteadmins */ -defined("MOODLE_INTERNAL") || die(); +defined('MOODLE_INTERNAL') || die(); $functions = array( "tool_apisiteadmins_add_to_administrators" => array( diff --git a/externallib.php b/externallib.php index 8054fcc..3f83eca 100644 --- a/externallib.php +++ b/externallib.php @@ -22,7 +22,7 @@ * @package tool_apisiteadmins */ -defined("MOODLE_INTERNAL") || die(); +defined('MOODLE_INTERNAL') || die(); require_once(__DIR__ . "/lib.php"); diff --git a/lib.php b/lib.php index b67904f..d41597b 100644 --- a/lib.php +++ b/lib.php @@ -22,7 +22,7 @@ * @package tool_apisiteadmins */ -defined("MOODLE_INTERNAL") || die(); +defined('MOODLE_INTERNAL') || die(); /** * Functions for working with the list of administrators. diff --git a/tests/api_test.php b/tests/api_test.php index a0c6fef..8155545 100644 --- a/tests/api_test.php +++ b/tests/api_test.php @@ -22,7 +22,7 @@ * @package tool_apisiteadmins */ -defined("MOODLE_INTERNAL") || die(); +defined('MOODLE_INTERNAL') || die(); global $CFG; diff --git a/tests/external_test.php b/tests/external_test.php index 7368550..83c58c5 100644 --- a/tests/external_test.php +++ b/tests/external_test.php @@ -22,7 +22,7 @@ * @package tool_apisiteadmins */ -defined("MOODLE_INTERNAL") || die(); +defined('MOODLE_INTERNAL') || die(); global $CFG; diff --git a/version.php b/version.php index 21a36bb..460c521 100644 --- a/version.php +++ b/version.php @@ -22,7 +22,7 @@ * @package tool_apisiteadmins */ -defined("MOODLE_INTERNAL") || die(); +defined('MOODLE_INTERNAL') || die(); $plugin->component = "tool_apisiteadmins"; $plugin->maturity = MATURITY_STABLE; -- cgit v1.2.3