blob: 4d5b8583647ca3b9cdd24d52134cfd4daa3645f4 (
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
}
|