diff options
Diffstat (limited to 'mod/guidbrowser/index.php')
-rw-r--r-- | mod/guidbrowser/index.php | 20 |
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 |