blob: 73af8d738b80a7fd90766b90a45b5ed30986c405 (
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
|
<?php
/**
* Elgg plugin specific user settings.
*
* @uses array $vars['installed_plugins'] An array of plugins as returned by elgg_get_plugins()
*
* @package Elgg.Core
* @subpackage Plugins.Settings
*/
// Description of what's going on
echo "<div class='user-settings margin-top'>"
. 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) {
if ($plugin->isActive()) {
echo elgg_view("core/settings/tools/plugin", array('plugin' => $plugin));
}
}
|