diff options
| author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-24 09:49:35 +0000 | 
|---|---|---|
| committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-24 09:49:35 +0000 | 
| commit | 4a029b01ada8f09be6f63a07b7723f203410b076 (patch) | |
| tree | 72c934c9bbee3a1c7178451c2ed2045b9a0a9eab | |
| parent | 50318370acf9ee42604f1debabdfa8b7f2f970ae (diff) | |
| download | elgg-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
| -rw-r--r-- | engine/lib/statistics.php | 3 | ||||
| -rw-r--r-- | languages/en.php | 7 | ||||
| -rw-r--r-- | views/default/usersettings/statistics_opt/online.php | 30 | 
3 files changed, 39 insertions, 1 deletions
diff --git a/engine/lib/statistics.php b/engine/lib/statistics.php index 73c424433..e88fa6100 100644 --- a/engine/lib/statistics.php +++ b/engine/lib/statistics.php @@ -95,7 +95,8 @@ -		extend_elgg_admin_page('usersettings/statistics_opt/numentities', 'usersettings/statistics');  +		extend_elgg_settings_page('usersettings/statistics_opt/online', 'usersettings/statistics'); +		extend_elgg_settings_page('usersettings/statistics_opt/numentities', 'usersettings/statistics');    	}  	/// Register init function diff --git a/languages/en.php b/languages/en.php index add0b3abc..d79e5806a 100644 --- a/languages/en.php +++ b/languages/en.php @@ -302,6 +302,13 @@  			'usersettings:plugins:description' => "This panel allows you to control and configure the personal settings for the tools installed by your system administrator.",  			'usersettings:statistics:label:numentities' => "Your entities", +	 +			'usersettings:statistics:yourdetails' => "Your details", +			'usersettings:statistics:label:name' => "Full name", +			'usersettings:statistics:label:email' => "Email", +			'usersettings:statistics:label:membersince' => "Member since", +			'usersettings:statistics:label:lastlogin' => "Last logged in", +	  		/**
 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  | 
