blob: f3c865b9f7bc831db62ce5a703ff9ee0cdb3b693 (
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
|
<?php
/**
* Saves global plugin settings.
*
* This action can be overriden for a specific plugin by creating the
* settings/<plugin_id>/save action in that plugin.
*
* @uses array $_REQUEST['params'] A set of key/value pairs to save to the ElggPlugin entity
* @uses int $_REQUEST['plugin_id'] The ID of the plugin
*
* @package Elgg.Core
* @subpackage Plugins.Settings
*/
$params = get_input('params');
$plugin_id = get_input('plugin_id');
$plugin = elgg_get_plugin_from_id($plugin_id);
if (!($plugin instanceof ElggPlugin)) {
register_error(elgg_echo('plugins:settings:save:fail', array($plugin_id)));
forward(REFERER);
}
$plugin_name = $plugin->manifest->getName();
$result = false;
// allow a plugin to override the save action for their settings
if (elgg_action_exists("settings/$plugin_id/save")) {
action("settings/$plugin_id/save");
} else {
foreach ($params as $k => $v) {
$result = $plugin->setSetting($k, $v);
if (!$result) {
register_error(elgg_echo('plugins:settings:save:fail', array($plugin_name)));
forward(REFERER);
exit;
}
}
}
system_message(elgg_echo('plugins:settings:save:ok', array($plugin_name)));
forward(REFERER);
|