diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-27 10:33:28 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-27 10:33:28 +0000 |
commit | 6b6d0bf9f1881d18959a2ee5241a94559ef2765a (patch) | |
tree | 4f95357f2e1cf332158d04964f2669d008c817fe /mod/profile/javascript.php | |
parent | 283a7758eaae7a4f8f1165eb7d31f2a60c32edea (diff) | |
download | elgg-6b6d0bf9f1881d18959a2ee5241a94559ef2765a.tar.gz elgg-6b6d0bf9f1881d18959a2ee5241a94559ef2765a.tar.bz2 |
Initial inclusion of profile icon navigation
git-svn-id: https://code.elgg.org/elgg/trunk@1163 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/javascript.php')
-rw-r--r-- | mod/profile/javascript.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mod/profile/javascript.php b/mod/profile/javascript.php new file mode 100644 index 000000000..f5af590bf --- /dev/null +++ b/mod/profile/javascript.php @@ -0,0 +1,18 @@ +<?php
+
+ /**
+ * Elgg profile JS
+ *
+ * @package ElggProfile
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Ben Werdmuller <ben@curverider.co.uk>
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+ // Get engine
+ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+
+ echo elgg_view('profile/javascript');
+
+?>
\ No newline at end of file |