From a1abec1d617c9330d9c06bda2f462d213f013f53 Mon Sep 17 00:00:00 2001 From: brettp Date: Fri, 16 Oct 2009 20:54:48 +0000 Subject: Finish up standardizing views/default/* git-svn-id: http://code.elgg.org/elgg/trunk@3557 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/usersettings/plugins.php | 52 ++++++++++++++++------------------ 1 file changed, 24 insertions(+), 28 deletions(-) (limited to 'views/default/usersettings/plugins.php') diff --git a/views/default/usersettings/plugins.php b/views/default/usersettings/plugins.php index af4f4bb36..95a856850 100644 --- a/views/default/usersettings/plugins.php +++ b/views/default/usersettings/plugins.php @@ -1,31 +1,27 @@ " . elgg_view('output/longtext', array('value' => elgg_echo("usersettings:plugins:description"))) . ""; +// Description of what's going on +echo "
" . elgg_view('output/longtext', array('value' => elgg_echo("usersettings:plugins:description"))) . "
"; - $limit = get_input('limit', 10); - $offset = get_input('offset', 0); - - // Get the installed plugins - $installed_plugins = $vars['installed_plugins']; - $count = count($installed_plugins); - - // Display list of plugins - $n = 0; - foreach ($installed_plugins as $plugin => $data) - { - if (is_plugin_enabled($plugin)) - echo elgg_view("usersettings/plugins_opt/plugin", array('plugin' => $plugin, 'details' => $data)); - - } - - -?> \ No newline at end of file +$limit = get_input('limit', 10); +$offset = get_input('offset', 0); + +// Get the installed plugins +$installed_plugins = $vars['installed_plugins']; +$count = count($installed_plugins); + +// Display list of plugins +$n = 0; +foreach ($installed_plugins as $plugin => $data) { + if (is_plugin_enabled($plugin)) { + echo elgg_view("usersettings/plugins_opt/plugin", array('plugin' => $plugin, 'details' => $data)); + } +} \ No newline at end of file -- cgit v1.2.3