aboutsummaryrefslogtreecommitdiff
path: root/actions/admin/plugins/enableall.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/admin/plugins/enableall.php')
-rw-r--r--actions/admin/plugins/enableall.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/actions/admin/plugins/enableall.php b/actions/admin/plugins/enableall.php
deleted file mode 100644
index 92a44b7a7..000000000
--- a/actions/admin/plugins/enableall.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/**
- * Enable 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();
-
-$plugins = get_installed_plugins();
-
-foreach ($plugins as $p => $data) {
- // Enable
- if (enable_plugin($p)) {
- system_message(sprintf(elgg_echo('admin:plugins:enable:yes'), $p));
- } else {
- register_error(sprintf(elgg_echo('admin:plugins:enable:no'), $p));
- }
-}
-
-// Regen view cache
-elgg_view_regenerate_simplecache();
-elgg_filepath_cache_reset();
-
-forward($_SERVER['HTTP_REFERER']);
-exit; \ No newline at end of file