diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-09-13 15:31:24 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-09-13 15:31:24 +0000 |
commit | b06c6d6f157513e2fc5d6eaa1e6c02d1e1046567 (patch) | |
tree | 2037cc644e26084359f38de7c5f582a88779988c /actions/admin/plugins/disableall.php | |
parent | dd354e7b0f75e59ed3be40dc7d7a3a8262213ccb (diff) | |
download | elgg-b06c6d6f157513e2fc5d6eaa1e6c02d1e1046567.tar.gz elgg-b06c6d6f157513e2fc5d6eaa1e6c02d1e1046567.tar.bz2 |
Refs #2450: Updated docs for core admin actions.
git-svn-id: http://code.elgg.org/elgg/trunk@6929 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/admin/plugins/disableall.php')
-rw-r--r-- | actions/admin/plugins/disableall.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/actions/admin/plugins/disableall.php b/actions/admin/plugins/disableall.php index 80553e9d1..8cba6252a 100644 --- a/actions/admin/plugins/disableall.php +++ b/actions/admin/plugins/disableall.php @@ -1,20 +1,19 @@ <?php /** - * Disable plugin action. + * Disable all installed plugins. * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ + * All plugins in the mod/ directory are disabled and the views cache and simplecache + * are reset. + * + * @package Elgg.Core + * @subpackage Administration.Site */ -// block non-admin users admin_gatekeeper(); $plugins = get_installed_plugins(); foreach ($plugins as $p => $data) { - // Disable if (disable_plugin($p)) { elgg_delete_admin_notice('first_installation_plugin_reminder'); system_message(sprintf(elgg_echo('admin:plugins:disable:yes'), $p)); @@ -23,6 +22,7 @@ foreach ($plugins as $p => $data) { } } +// need to reset caches for new view locations and cached view output. elgg_view_regenerate_simplecache(); elgg_filepath_cache_reset(); |