diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-18 17:14:31 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-18 17:14:31 +0000 |
commit | c759754bfa7cdc83d843489a14580c61a72de370 (patch) | |
tree | f2dd772a82e1fa2a875ff309a42d53ff960c7408 | |
parent | 8f78070af36c61b491eac60ebc37eb164ee5e1ba (diff) | |
download | elgg-c759754bfa7cdc83d843489a14580c61a72de370.tar.gz elgg-c759754bfa7cdc83d843489a14580c61a72de370.tar.bz2 |
Introducing the dashboard!
git-svn-id: https://code.elgg.org/elgg/trunk@979 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | dashboard/index.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dashboard/index.php b/dashboard/index.php new file mode 100644 index 000000000..e636f06f7 --- /dev/null +++ b/dashboard/index.php @@ -0,0 +1,30 @@ +<?php
+
+ /**
+ * Elgg dashboard
+ *
+ * @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
+ * @link http://elgg.org/
+ */
+
+ // Get the Elgg engine
+ require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
+
+ // Ensure that only logged-in users can see this page
+ gatekeeper();
+
+ // Set context and title
+ set_context('dashboard');
+ set_page_owner($_SESSION['user']->getGUID());
+ $title = elgg_echo('dashboard');
+
+ // Try and get the user from the username and set the page body accordingly
+ $body = elgg_view_layout('widgets',"");
+
+ page_draw($title, $body);
+
+?>
\ No newline at end of file |