aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views/default/groups/grouplinks.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/groups/views/default/groups/grouplinks.php')
-rw-r--r--mod/groups/views/default/groups/grouplinks.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/mod/groups/views/default/groups/grouplinks.php b/mod/groups/views/default/groups/grouplinks.php
new file mode 100644
index 000000000..0397cec08
--- /dev/null
+++ b/mod/groups/views/default/groups/grouplinks.php
@@ -0,0 +1,29 @@
+<?php
+ /**
+ * Group links
+ *
+ * @package ElggGroups
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+ //check to see if the user is looking at their own profile
+ if($_SESSION['user']->guid == $vars['entity']->owner_guid){
+
+ echo "<div id=\"profile_menu_wrapper\">"; //start the wrapper div
+ echo elgg_view("groups/menu/actions",$vars);
+ echo elgg_view("groups/menu/ownerlinks",$vars);
+ echo "</div>"; //close wrapper div
+
+ } else {
+
+ echo "<div id=\"profile_menu_wrapper\">"; //start the wrapper div
+ echo elgg_view("groups/menu/actions",$vars); //grab action links such as make friend
+ echo elgg_view("groups/menu/links",$vars); //passive links to items such as user blog etc
+ echo "</div>"; //close wrapper div
+
+ }
+
+?> \ No newline at end of file