aboutsummaryrefslogtreecommitdiff
path: root/views/default/core/settings/tools/plugin.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-01-01 20:27:15 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-01-01 20:27:15 +0000
commit3e79004b04458c0ec11462a422dc67f2fb3c2bdb (patch)
tree854bf7ee1df19e44961f78ae90de645a7cd1bed9 /views/default/core/settings/tools/plugin.php
parent0fc7a5edbc518abd92c4fc8c34b31ca05836132f (diff)
downloadelgg-3e79004b04458c0ec11462a422dc67f2fb3c2bdb.tar.gz
elgg-3e79004b04458c0ec11462a422dc67f2fb3c2bdb.tar.bz2
using the info module for user settings
git-svn-id: http://code.elgg.org/elgg/trunk@7808 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/core/settings/tools/plugin.php')
-rw-r--r--views/default/core/settings/tools/plugin.php18
1 files changed, 13 insertions, 5 deletions
diff --git a/views/default/core/settings/tools/plugin.php b/views/default/core/settings/tools/plugin.php
index 981d8d937..8fcc87bee 100644
--- a/views/default/core/settings/tools/plugin.php
+++ b/views/default/core/settings/tools/plugin.php
@@ -23,11 +23,19 @@ if ($user_guid) {
if (elgg_view("usersettings/{$plugin}/edit")) {
?>
-<div class="user-settings">
- <h3><?php echo elgg_echo($plugin); ?></h3>
-
- <div id="<?php echo $plugin; ?>_settings">
- <?php echo elgg_view("object/plugin", array('plugin' => $plugin, 'entity' => find_plugin_usersettings($plugin, $user_guid), 'prefix' => 'user')) ?>
+<div class="elgg-module elgg-info-module">
+ <div class="elgg-head">
+ <h3><?php echo elgg_echo($plugin); ?></h3>
+ </div>
+ <div class="elgg-body">
+ <div id="<?php echo $plugin; ?>_settings">
+ <?php echo elgg_view("object/plugin", array(
+ 'plugin' => $plugin,
+ 'entity' => find_plugin_usersettings($plugin, $user_guid),
+ 'prefix' => 'user'
+ ));
+ ?>
+ </div>
</div>
</div>
<?php