blob: 817b18cde7e3b3088ebd72d1193edf4d39bf3ce6 (
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
30
|
<?php
/**
* Elgg statistics screen showing online users.
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*/
$user = $_SESSION['user'];
$logged_in = 0;
$log = get_system_log($_SESSION['user']->guid, "login", "", 'user', '', 1);
if ($log) {
$logged_in=$log[0]->time_created;
}
?>
<div class="user_settings details">
<h3><?php echo elgg_echo('usersettings:statistics:yourdetails'); ?></h3>
<table class="styled">
<tr class="odd"><td class="column_one"><?php echo elgg_echo('usersettings:statistics:label:name'); ?></td><td><?php echo $user->name; ?></td></tr>
<tr class="even"><td class="column_one"><?php echo elgg_echo('usersettings:statistics:label:email'); ?></td><td><?php echo $user->email; ?></td></tr>
<tr class="odd"><td class="column_one"><?php echo elgg_echo('usersettings:statistics:label:membersince'); ?></td><td><?php echo date("r",$user->time_created); ?></td></tr>
<tr class="even"><td class="column_one"><?php echo elgg_echo('usersettings:statistics:label:lastlogin'); ?></td><td><?php echo date("r",$logged_in); ?></td></tr>
</table>
</div>
|