aboutsummaryrefslogtreecommitdiff
path: root/views/default/usersettings/plugins.php
blob: c18c5aaef7b97608d380e1771ef097bf19e556b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
	/**
	 * Elgg plugin specific user settings.
	 * 
	 * @package Elgg
	 * @subpackage Core
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd 
	 * @copyright Curverider Ltd 2008-2009
	 * @link http://elgg.org/
	 */

	// Description of what's going on
		echo "<div class=\"contentWrapper\">" . elgg_view('output/longtext', array('value' => elgg_echo("usersettings:plugins:description"))) . "</div>";

		$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));
			
		}
		
	
?>