diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-16 20:54:48 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-16 20:54:48 +0000 |
commit | a1abec1d617c9330d9c06bda2f462d213f013f53 (patch) | |
tree | 7e2d2d3007f4b2155a056fb43d3c428b65a96f34 /views/default/usersettings/statistics_opt/online.php | |
parent | 70b08afa64465f4d3457ba6e1c4cc2df1dd2069b (diff) | |
download | elgg-a1abec1d617c9330d9c06bda2f462d213f013f53.tar.gz elgg-a1abec1d617c9330d9c06bda2f462d213f013f53.tar.bz2 |
Finish up standardizing views/default/*
git-svn-id: http://code.elgg.org/elgg/trunk@3557 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/usersettings/statistics_opt/online.php')
-rw-r--r-- | views/default/usersettings/statistics_opt/online.php | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/views/default/usersettings/statistics_opt/online.php b/views/default/usersettings/statistics_opt/online.php index f364e6cab..2ea9bef28 100644 --- a/views/default/usersettings/statistics_opt/online.php +++ b/views/default/usersettings/statistics_opt/online.php @@ -1,25 +1,26 @@ <?php - /** - * Elgg statistics screen showing online users. - * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - */ +/** + * 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; +} - $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> |