aboutsummaryrefslogtreecommitdiff
path: root/views/default/usersettings/statistics_opt
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-24 09:49:35 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-24 09:49:35 +0000
commit4a029b01ada8f09be6f63a07b7723f203410b076 (patch)
tree72c934c9bbee3a1c7178451c2ed2045b9a0a9eab /views/default/usersettings/statistics_opt
parent50318370acf9ee42604f1debabdfa8b7f2f970ae (diff)
downloadelgg-4a029b01ada8f09be6f63a07b7723f203410b076.tar.gz
elgg-4a029b01ada8f09be6f63a07b7723f203410b076.tar.bz2
Refs #76: User settings page (to Elgg Classic standard)
git-svn-id: https://code.elgg.org/elgg/trunk@1087 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/usersettings/statistics_opt')
-rw-r--r--views/default/usersettings/statistics_opt/online.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/views/default/usersettings/statistics_opt/online.php b/views/default/usersettings/statistics_opt/online.php
new file mode 100644
index 000000000..6a4cb9c1b
--- /dev/null
+++ b/views/default/usersettings/statistics_opt/online.php
@@ -0,0 +1,30 @@
+<?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 Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ $user = $_SESSION['user'];
+
+ $logged_in = 0;
+ $log = get_system_log($_SESSION['user']->guid, "login", "ElggUser", 1);
+ if ($log)
+ $logged_in=$log[0]->time_created;
+
+?>
+<div>
+ <h2><?php echo elgg_echo('usersettings:statistics:yourdetails'); ?></h2>
+
+ <table>
+ <tr><td><?php echo elgg_echo('usersettings:statistics:label:name'); ?></td><td><?php echo $user->name; ?></td></tr>
+ <tr><td><?php echo elgg_echo('usersettings:statistics:label:email'); ?></td><td><?php echo $user->email; ?></td></tr>
+ <tr><td><?php echo elgg_echo('usersettings:statistics:label:membersince'); ?></td><td><?php echo date("r",$user->time_created); ?></td></tr>
+ <tr><td><?php echo elgg_echo('usersettings:statistics:label:lastlogin'); ?></td><td><?php echo date("r",$logged_in); ?></td></tr>
+ </table>
+</div> \ No newline at end of file