blob: 7d01e4a46f06b3ca14d4765e1bc4fa9fa05853fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<?php
/**
* Bulk enable and disable for plugins appearing in the "simple" interface.
*
* Plugins marked as using the "simple" interface can be enabled and disabled
* en masse by passing the enabled plugins as an array of their plugin ids
* (directory names) through $_REQUEST['enabled_plugins']. All "simple" plugins
* not in this array will be disabled.
*
* Simplecache and views cache are reset.
*
* @uses array $_REQUEST['enabled_plugins'] An array of plugin ids (directory names) to enable.
*
* @since 1.8
* @package Elgg.Core
* @subpackage Administration.Site
*/
$installed_plugins = get_installed_plugins();
$enabled_plugins = get_input('enabled_plugins', array());
$success = TRUE;
foreach ($installed_plugins as $plugin => $info) {
// this is only for simple plugins.
$interface_type = elgg_get_array_value('admin_interface', $info['manifest'], NULL);
if (!$interface_type || $interface_type != 'simple') {
continue;
}
$plugin_enabled = is_plugin_enabled($plugin);
// only effect changes to plugins not already in that state.
if ($plugin_enabled && !in_array($plugin, $enabled_plugins)) {
$success = $success && disable_plugin($plugin);
} elseif (!$plugin_enabled && in_array($plugin, $enabled_plugins)) {
$success = $success && enable_plugin($plugin);
}
}
if ($success) {
elgg_delete_admin_notice('first_installation_plugin_reminder');
system_message(elgg_echo('admin:plugins:simple_simple_success'));
} else {
register_error(elgg_echo('admins:plugins:simple_simple_fail'));
}
// don't regenerate the simplecache because the plugin won't be
// loaded until next run. Just invalidate and let it regnerate as needed
elgg_invalidate_simplecache();
elgg_filepath_cache_reset();
forward(REFERER);
|