diff options
| author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-23 17:43:23 +0000 | 
|---|---|---|
| committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-23 17:43:23 +0000 | 
| commit | ee25c76e0bab45893a9d52a3820a16be2d481010 (patch) | |
| tree | 63792d4a58d56953ede040831e18b176107d23a1 /settings/statistics/index.php | |
| parent | 317d14bba5d58975446ecd9ab1b37a89c647fc1b (diff) | |
| download | elgg-ee25c76e0bab45893a9d52a3820a16be2d481010.tar.gz elgg-ee25c76e0bab45893a9d52a3820a16be2d481010.tar.bz2  | |
Refs #76: User settings page (to Elgg Classic standard). Committing some work before shutting down for the day.
git-svn-id: https://code.elgg.org/elgg/trunk@1078 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'settings/statistics/index.php')
| -rw-r--r-- | settings/statistics/index.php | 22 | 
1 files changed, 22 insertions, 0 deletions
diff --git a/settings/statistics/index.php b/settings/statistics/index.php new file mode 100644 index 000000000..303838a81 --- /dev/null +++ b/settings/statistics/index.php @@ -0,0 +1,22 @@ +<?php +	/** +	 * Elgg user settings functions. +	 *  +	 * @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/ +	 */ + +	// Get the Elgg framework +		require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); + +	// Make sure only valid admin users can see this +		gatekeeper(); +		 + +	// Display main admin menu +		page_draw(elgg_echo("usersettings:statistics"),elgg_view_layout("one_column",elgg_view("usersettings/statistics"))); +?>
\ No newline at end of file  | 
