diff options
Diffstat (limited to 'actions/admin/plugins/enableall.php')
| -rw-r--r-- | actions/admin/plugins/enableall.php | 30 |
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 d1758a4b3..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)) { - elgg_delete_admin_notice('first_installation_plugin_reminder'); - 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']);
\ No newline at end of file |
