diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-23 16:48:36 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-23 16:48:36 +0000 |
commit | 2dad5867569b3b30920220c8ed1edd912b55811c (patch) | |
tree | 510c3efa437ff651422349da09e561495fb3306c /engine/lib | |
parent | 01875b30b9e70d4bd355bc86f2a87771a0f59571 (diff) | |
download | elgg-2dad5867569b3b30920220c8ed1edd912b55811c.tar.gz elgg-2dad5867569b3b30920220c8ed1edd912b55811c.tar.bz2 |
git-svn-id: https://code.elgg.org/elgg/trunk@1072 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/plugins.php | 34 |
1 files changed, 34 insertions, 0 deletions
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. |