aboutsummaryrefslogtreecommitdiff
path: root/views/default/usersettings/statistics_opt/online.php
blob: 1683cca23ec8d3af1bd2e1f34955395e97c47a97 (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
31
<?php
	/**
	 * Elgg statistics screen showing online users.
	 * 
	 * @package Elgg
	 * @subpackage Core
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008-2009
	 * @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="usersettings_statistics">
	<h3><?php echo elgg_echo('usersettings:statistics:yourdetails'); ?></h3>
	
	<table>
		<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>