From 48486e99479657edb70474ae9b18dbe713e1cae0 Mon Sep 17 00:00:00 2001 From: brettp Date: Wed, 14 Oct 2009 19:40:21 +0000 Subject: Standardized actions/admin/* git-svn-id: http://code.elgg.org/elgg/trunk@3540 36083f99-b078-4883-b0ff-0f9b5a30f544 --- actions/admin/plugins/disableall.php | 65 ++++++++++++++++++------------------ 1 file changed, 32 insertions(+), 33 deletions(-) (limited to 'actions/admin/plugins/disableall.php') diff --git a/actions/admin/plugins/disableall.php b/actions/admin/plugins/disableall.php index 672915bce..b06961450 100644 --- a/actions/admin/plugins/disableall.php +++ b/actions/admin/plugins/disableall.php @@ -1,35 +1,34 @@ $data) - { - // 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(); + +$plugins = get_installed_plugins(); + +foreach ($plugins as $p => $data) { + // 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 -- cgit v1.2.3