diff options
Diffstat (limited to 'actions/admin/plugins/enableall.php')
| -rw-r--r-- | actions/admin/plugins/enableall.php | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/actions/admin/plugins/enableall.php b/actions/admin/plugins/enableall.php deleted file mode 100644 index f31b4593d..000000000 --- a/actions/admin/plugins/enableall.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php - /** - * Enable plugin action. - * - * @package Elgg - * @subpackage Core - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Curverider Ltd - * @copyright Curverider Ltd 2008-2009 - * @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(); - - // Regen paths cache - $cache = elgg_get_filepath_cache(); - $cache->delete('view_paths'); - - forward($_SERVER['HTTP_REFERER']); - exit; - -?>
\ No newline at end of file |
