diff options
Diffstat (limited to 'actions/admin/plugins/enableall.php')
-rw-r--r-- | actions/admin/plugins/enableall.php | 68 |
1 files changed, 33 insertions, 35 deletions
diff --git a/actions/admin/plugins/enableall.php b/actions/admin/plugins/enableall.php index 596955884..92a44b7a7 100644 --- a/actions/admin/plugins/enableall.php +++ b/actions/admin/plugins/enableall.php @@ -1,37 +1,35 @@ <?php - /** - * Enable plugin action. - * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - */ +/** + * 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 +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 |