blob: b34c808281e9b2c260d2cfa0e0d1e8f84213a459 (
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
|
<?php
/**
* Elgg plugin user settings save 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/
*/
$params = get_input('params');
$plugin = get_input('plugin');
gatekeeper();
action_gatekeeper();
$result = false;
foreach ($params as $k => $v)
{
// Save
$result = set_plugin_usersetting($k, $v, $_SESSION['user']->guid, $plugin);
// Error?
if (!$result)
{
register_error(sprintf(elgg_echo('plugins:usersettings:save:fail'), $plugin));
forward($_SERVER['HTTP_REFERER']);
exit;
}
}
// An event to tell any interested plugins of the change is settings
//trigger_elgg_event('plugin_usersettings_save', $plugin, find_plugin_settings($plugin)); // replaced by plugin:usersetting event
system_message(sprintf(elgg_echo('plugins:usersettings:save:ok'), $plugin));
forward($_SERVER['HTTP_REFERER']);
?>
|