diff options
Diffstat (limited to 'actions')
-rw-r--r-- | actions/admin/plugins/disableall.php | 36 | ||||
-rw-r--r-- | actions/admin/plugins/enableall.php | 37 |
2 files changed, 73 insertions, 0 deletions
diff --git a/actions/admin/plugins/disableall.php b/actions/admin/plugins/disableall.php new file mode 100644 index 000000000..efb91f773 --- /dev/null +++ b/actions/admin/plugins/disableall.php @@ -0,0 +1,36 @@ +<?php + /** + * Disable 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) + { + // 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();
+ + forward($_SERVER['HTTP_REFERER']); + exit; +?>
\ No newline at end of file diff --git a/actions/admin/plugins/enableall.php b/actions/admin/plugins/enableall.php new file mode 100644 index 000000000..5e0d8c3b5 --- /dev/null +++ b/actions/admin/plugins/enableall.php @@ -0,0 +1,37 @@ +<?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)); + } + + elgg_view_regenerate_simplecache(); + + forward($_SERVER['HTTP_REFERER']); + exit; + +?>
\ No newline at end of file |