diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-14 19:40:21 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-14 19:40:21 +0000 |
commit | 48486e99479657edb70474ae9b18dbe713e1cae0 (patch) | |
tree | b6ae3258c6b87a1086d124661b98ef6fb1e2199c /actions/admin/plugins/enable.php | |
parent | ee554433ea345fe1037e7ace1f2d82bd49e53cae (diff) | |
download | elgg-48486e99479657edb70474ae9b18dbe713e1cae0.tar.gz elgg-48486e99479657edb70474ae9b18dbe713e1cae0.tar.bz2 |
Standardized actions/admin/*
git-svn-id: http://code.elgg.org/elgg/trunk@3540 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/admin/plugins/enable.php')
-rw-r--r-- | actions/admin/plugins/enable.php | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/actions/admin/plugins/enable.php b/actions/admin/plugins/enable.php index 890e6648e..0a6631b65 100644 --- a/actions/admin/plugins/enable.php +++ b/actions/admin/plugins/enable.php @@ -1,38 +1,38 @@ <?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(); - - // Get the plugin - $plugin = get_input('plugin'); - if (!is_array($plugin)) - $plugin = array($plugin); - - foreach ($plugin as $p) - { - // Disable - 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)); +require_once(dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php"); + +// block non-admin users +admin_gatekeeper(); + +// Validate the action +action_gatekeeper(); + +// Get the plugin +$plugin = get_input('plugin'); +if (!is_array($plugin)) { + $plugin = array($plugin); +} + +foreach ($plugin as $p) { + // Disable + 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)); } - - elgg_view_regenerate_simplecache(); - elgg_filepath_cache_reset(); - - forward($_SERVER['HTTP_REFERER']); - exit; -?>
\ No newline at end of file +} + +elgg_view_regenerate_simplecache(); +elgg_filepath_cache_reset(); + +forward($_SERVER['HTTP_REFERER']); +exit;
\ No newline at end of file |