I am using the below code in the block visibilty settings, to only show the block if the user is a member, and not the admin.

What can I add to further filter it down to type of Organic Group Node.

i.o.w Only display if the currnt group being viewed = Organic Group Node Type X

<?php
  $in_og = FALSE;
if (module_exists('og')){
  $in_og = FALSE;
  $group_node = og_get_group_context();
  $gid02 = $group_node->nid;
  $gid = (int)$gid02;
  if ($gid02 == null) $gid = 0; 
  if (og_is_group_member($group_node)) $in_og = TRUE;
  if (og_is_group_admin($group_node)) $in_og = FALSE;
  if ($gid == 0) $in_og = FALSE;
}
return $in_og;

thanks

link|improve this question

73% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Maybe something like"

<?php
    $in_og = FALSE;
    $right_group = FALSE;
    if (module_exists('og')) {
        // get OG $group_node
        $group_node = og_get_group_context();
        if ($group_node->type == 'type-x') {
            // we have the correct group type
            $right_group = TRUE;
        }
        $gid = $group_node->nid;
        if (og_is_group_member($group_node)) {
            // show to members
            $in_og = TRUE;
        }
        if (og_is_group_admin($group_node)) {
            // hide from admins
            $in_og = FALSE;
        }
    }
    return $in_og && $right_group;
?>
link|improve this answer
thanks so muhc that worked perfectly. – Ankh2054 Nov 10 '10 at 17:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.