From aae8d757e4fd68c832ad7fbc45879eb96c9672ff Mon Sep 17 00:00:00 2001 From: marcus Date: Mon, 19 Jan 2009 17:46:50 +0000 Subject: Closes #697: Events triggered when plugin settings are updated. git-svn-id: https://code.elgg.org/elgg/trunk@2580 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/plugins.php | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) (limited to 'engine') diff --git a/engine/lib/plugins.php b/engine/lib/plugins.php index a6d10524a..639a62354 100644 --- a/engine/lib/plugins.php +++ b/engine/lib/plugins.php @@ -411,7 +411,13 @@ $prefix = "plugin:settings:$plugin_name:$name"; //$user->$prefix = $value; //$user->save(); - return set_private_setting($user->guid, $prefix, $value); + + if (trigger_elgg_event('plugin:usersetting', 'user', array( + 'plugin' => $plugin_name, + 'name' => $name, + 'value' => $value + ))) + return set_private_setting($user->guid, $prefix, $value); } return false; @@ -452,7 +458,8 @@ * @param string $plugin_name Optional plugin name, if not specified then it is detected from where you are calling from. */ function set_plugin_setting($name, $value, $plugin_name = "") - { + { + if (!$plugin_name) $plugin_name = get_plugin_name(); $plugin = find_plugin_settings($plugin_name); if (!$plugin) @@ -460,12 +467,19 @@ if ($name!='title') { - $plugin->title = $plugin_name; - $plugin->access_id = 2; - $plugin->save(); - $plugin->$name = $value; - - return $plugin->getGUID(); + if (trigger_elgg_event('plugin:setting', 'plugin', array( + 'plugin' => $plugin_name, + 'name' => $name, + 'value' => $value + ))) + { + $plugin->title = $plugin_name; + $plugin->access_id = 2; + $plugin->save(); + $plugin->$name = $value; + + return $plugin->getGUID(); + } } return false; -- cgit v1.2.3