From 2dad5867569b3b30920220c8ed1edd912b55811c Mon Sep 17 00:00:00 2001 From: marcus Date: Mon, 23 Jun 2008 16:48:36 +0000 Subject: git-svn-id: https://code.elgg.org/elgg/trunk@1072 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/plugins.php | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'engine') diff --git a/engine/lib/plugins.php b/engine/lib/plugins.php index 073869a52..cf3252ffd 100644 --- a/engine/lib/plugins.php +++ b/engine/lib/plugins.php @@ -207,6 +207,40 @@ return false; } + + /** + * Set a user specific setting for a plugin. + * + * @param string $name The name - note, can't be "title". + * @param mixed $value The value. + * @param string $plugin_name Optional plugin name, if not specified then it is detected from where you are calling from. + */ + function set_plugin_usersetting($name, $value, $plugin_name = "") + { + + } + + /** + * Get a user specific setting for a plugin. + * + * @param string $name The name. + * @param string $plugin_name Optional plugin name, if not specified then it is detected from where you are calling from. + */ + function get_plugin_usersetting($name, $plugin_name = "") + { + + } + + /** + * Clear a user specific plugin setting. + * + * @param string $name The name. + * @param string $plugin_name Optional plugin name, if not specified then it is detected from where you are calling from. + */ + function clear_plugin_usersetting($name, $plugin_name = "") + { + + } /** * Set a setting for a plugin. -- cgit v1.2.3