aboutsummaryrefslogtreecommitdiff
path: root/mod/walledgarden/index.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-04 04:01:29 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-04 04:01:29 +0000
commit62b5f00225fdfaab4eb0075cac646592a90bbecf (patch)
tree2a4c2b440905255cf661d8efb93cf431d7ba60d9 /mod/walledgarden/index.php
parent41063c981d2484b90b7ea146c02e8e74f2c54119 (diff)
downloadelgg-62b5f00225fdfaab4eb0075cac646592a90bbecf.tar.gz
elgg-62b5f00225fdfaab4eb0075cac646592a90bbecf.tar.bz2
Moved walled garden into trunk.
git-svn-id: http://code.elgg.org/elgg/trunk@5272 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/walledgarden/index.php')
-rw-r--r--mod/walledgarden/index.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/mod/walledgarden/index.php b/mod/walledgarden/index.php
new file mode 100644
index 000000000..ca822d78a
--- /dev/null
+++ b/mod/walledgarden/index.php
@@ -0,0 +1,24 @@
+<?php
+
+ /**
+ * Elgg custom index
+ *
+ * @package ElggCustomIndex
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd <info@elgg.com>
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+ // Get the Elgg engine
+ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+
+ //grab the login form
+ $login = elgg_view("account/forms/login");
+
+ //display the contents in our new canvas layout
+ $body = elgg_view_layout('new_index',$login);
+
+ page_draw($title, $body);
+
+?> \ No newline at end of file