From 20b30e0bc0731b440feae8287f37365ce6050bf0 Mon Sep 17 00:00:00 2001 From: marcus Date: Fri, 20 Jun 2008 17:14:46 +0000 Subject: Closes #66: Per site plugin settings configuration panel. Use the same technique as edit pages on widgets, i.e. 1) Create a new view in your plugins view/default called settings/PLUGINNAME/edit Where PLUGINNAME is the plugin directory, eg "river" or "profile". 2) Place your edit code in edit.php, fields should save to params[fieldname]. 3) The view will be passed $vars['entity'] which holds any configuration values already set in the metadata. Note. Settings are PER SITE. git-svn-id: https://code.elgg.org/elgg/trunk@1031 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/object/plugin.php | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) (limited to 'views/default/object/plugin.php') diff --git a/views/default/object/plugin.php b/views/default/object/plugin.php index 552d42192..edaf1f0db 100644 --- a/views/default/object/plugin.php +++ b/views/default/object/plugin.php @@ -9,5 +9,25 @@ * @copyright Curverider Ltd 2008 * @link http://elgg.org/ */ + + $entity = $vars['entity']; + $plugin = $vars['plugin']; + ?> -// render a plugin & settings \ No newline at end of file +
+
+ + + +

+ + +

+
+
\ No newline at end of file -- cgit v1.2.3