aboutsummaryrefslogtreecommitdiff
path: root/actions/admin/plugins/disable.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/admin/plugins/disable.php')
-rw-r--r--actions/admin/plugins/disable.php72
1 files changed, 36 insertions, 36 deletions
diff --git a/actions/admin/plugins/disable.php b/actions/admin/plugins/disable.php
index 90825bc2f..810eb1c94 100644
--- a/actions/admin/plugins/disable.php
+++ b/actions/admin/plugins/disable.php
@@ -1,38 +1,38 @@
<?php
- /**
- * Disable plugin action.
- *
- * @package Elgg
- * @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
- */
+/**
+ * Disable plugin action.
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
- require_once(dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php");
-
- // block non-admin users
- admin_gatekeeper();
-
- // Validate the action
- action_gatekeeper();
-
- // Get the plugin
- $plugin = get_input('plugin');
- if (!is_array($plugin))
- $plugin = array($plugin);
-
- foreach ($plugin as $p)
- {
- // Disable
- if (disable_plugin($p))
- system_message(sprintf(elgg_echo('admin:plugins:disable:yes'), $p));
- else
- register_error(sprintf(elgg_echo('admin:plugins:disable:no'), $p));
- }
-
- elgg_view_regenerate_simplecache();
- elgg_filepath_cache_reset();
-
- forward($_SERVER['HTTP_REFERER']);
- exit;
-?> \ No newline at end of file
+require_once(dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php");
+
+// block non-admin users
+admin_gatekeeper();
+
+// Validate the action
+action_gatekeeper();
+
+// Get the plugin
+$plugin = get_input('plugin');
+if (!is_array($plugin)) {
+ $plugin = array($plugin);
+}
+
+foreach ($plugin as $p) {
+ // Disable
+ if (disable_plugin($p)) {
+ system_message(sprintf(elgg_echo('admin:plugins:disable:yes'), $p));
+ } else {
+ register_error(sprintf(elgg_echo('admin:plugins:disable:no'), $p));
+ }
+}
+
+elgg_view_regenerate_simplecache();
+elgg_filepath_cache_reset();
+
+forward($_SERVER['HTTP_REFERER']);
+exit; \ No newline at end of file