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.php30
1 files changed, 0 insertions, 30 deletions
diff --git a/actions/admin/plugins/enableall.php b/actions/admin/plugins/enableall.php
deleted file mode 100644
index ea4b48f95..000000000
--- a/actions/admin/plugins/enableall.php
+++ /dev/null
@@ -1,30 +0,0 @@
-<?php
-/**
- * Enable plugin action.
- *
- * @package Elgg
- * @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
- */
-
-// block non-admin users
-admin_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;