aboutsummaryrefslogtreecommitdiff
path: root/mod/guidbrowser/index.php
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-02 22:53:55 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-02 22:53:55 +0000
commit6aaa89ba29640f72280d3e59e3dab42651a2d885 (patch)
tree90c301f213d016a9fed8aa1af7fb46471008b585 /mod/guidbrowser/index.php
parentffa39470d8513396e33f56e018cba22b35419dfc (diff)
downloadelgg-6aaa89ba29640f72280d3e59e3dab42651a2d885.tar.gz
elgg-6aaa89ba29640f72280d3e59e3dab42651a2d885.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* End of day git-svn-id: https://code.elgg.org/elgg/trunk@377 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/guidbrowser/index.php')
-rw-r--r--mod/guidbrowser/index.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/mod/guidbrowser/index.php b/mod/guidbrowser/index.php
new file mode 100644
index 000000000..71b852bb6
--- /dev/null
+++ b/mod/guidbrowser/index.php
@@ -0,0 +1,20 @@
+<?php
+ /**
+ * Elgg GUID browser
+ *
+ * @package ElggDevTools
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Marcus Povey <marcus@marcus-povey.co.uk>
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+ // Load Elgg engine
+ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+
+ // Get the current page's owner
+ $page_owner = page_owner_entity();
+
+ // Display page
+ page_draw(elgg_echo("guidbrowser"), $body);
+?> \ No newline at end of file