diff options
author | Valentin Popov <info@valentineus.link> | 2018-06-11 18:00:07 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-06-11 18:00:07 +0300 |
commit | 62c0ddbcd27f93fd9e2882dd035ab83a848ee3c4 (patch) | |
tree | 451f1b5713de22a50a4bc755ccee0618c8914bf0 | |
parent | f2f22e98178c53cd81d2a86db0ed7d3d190b6cfd (diff) | |
download | tool_apisiteadmins-62c0ddbcd27f93fd9e2882dd035ab83a848ee3c4.tar.xz tool_apisiteadmins-62c0ddbcd27f93fd9e2882dd035ab83a848ee3c4.zip |
Fix check MOODLE_INTERNAL
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | classes/event/administrator_added.php | 2 | ||||
-rw-r--r-- | classes/event/administrator_changed.php | 2 | ||||
-rw-r--r-- | classes/event/administrator_deleted.php | 2 | ||||
-rw-r--r-- | db/services.php | 2 | ||||
-rw-r--r-- | externallib.php | 2 | ||||
-rw-r--r-- | lib.php | 2 | ||||
-rw-r--r-- | tests/api_test.php | 2 | ||||
-rw-r--r-- | tests/external_test.php | 2 | ||||
-rw-r--r-- | version.php | 2 |
9 files changed, 9 insertions, 9 deletions
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"); @@ -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; |