diff options
Diffstat (limited to 'views/default/admin/statistics.php')
-rw-r--r-- | views/default/admin/statistics.php | 60 |
1 files changed, 1 insertions, 59 deletions
diff --git a/views/default/admin/statistics.php b/views/default/admin/statistics.php index 984205c8f..4c2035f0d 100644 --- a/views/default/admin/statistics.php +++ b/views/default/admin/statistics.php @@ -14,62 +14,4 @@ echo "<p>" . nl2br(elgg_echo("admin:statistics:description")) . "</p>"; - - - // Get entity statistics - $entity_stats = get_entity_statistics(); - - // Work out number of users - $users_stats = get_number_users(); - - // users online - $users_online = get_number_online(); - - - -?> -<div> - <h2><?php echo elgg_echo('admin:statistics:label:basic'); ?></h2> - <table> - <tr> - <td><b><?php echo elgg_echo('admin:statistics:label:numusers'); ?> :</b></td> - <td><?php echo $users_stats; ?></td> - </tr> - <tr> - <td><b><?php echo elgg_echo('admin:statistics:label:numonline'); ?> :</b></td> - <td><?php echo $users_online; ?></td> - </tr> - </table> -</div> - -<div> - <h2><?php echo elgg_echo('admin:statistics:label:numentities'); ?></h2> - <table> - <?php - foreach ($entity_stats as $k => $entry) - { - echo "<table>"; - foreach ($entry as $a => $b) - { - if ($a == "__base__") - $a=$k; - else - $a = "$k $a"; - echo <<< END - <tr> - <td><b>$a :</b></td> - <td>$b</td> - </tr> -END; - } - echo "</table>"; - } - ?> - </table> -</div> - -<div> - <h2><?php echo sprintf(elgg_echo('admin:statistics:label:onlineusers'), 10); ?></h2> - - -</div>
\ No newline at end of file +?>
\ No newline at end of file |