blob: 79de121e50d9f851fc5a7650d3b666373fc9a9b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
// newest users
if (is_plugin_enabled('profile')) {
$users = elgg_list_entities(array(
'type' => 'user', 'subtype'=>null,
'full_view' => FALSE
));
echo elgg_view_title(elgg_echo('admin:users'));
?>
<div class="admin_settings members_list users_online">
<h3><?php echo elgg_echo('admin:users:newest'); ?></h3>
<?php echo $users; ?>
</div>
<?php
}
|