blob: c224df215ac7d773c29a618bba41d2c2f17d3202 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
// newest users
$users = elgg_list_entities(array(
'type' => 'user',
'subtype'=> null,
'full_view' => FALSE
));
?>
<div class="admin_settings members-list users_online">
<h3><?php echo elgg_echo('admin:users:newest'); ?></h3>
<?php echo $users; ?>
</div>
|