I currently have the following FEU Groups:
All (Everyone belongs to this group, in addition to one of the following)
Group A
Group B
My thought is to let everyone see the same content once they log in - this will the content marked 'All'. In addition, there will be a 'My Resources' link that will switch to a part of the site customized for different groups.
My question is - how to generate a menu for just a specific group? The Protected Pages content type does a wonderful job of handling this all in the background, but I need to have a template (or most likely logic on the page) that generates a menu of content that is only available to Group A - excluding content that is available to All. So that when they click on the 'My Resources' link the menu does something like:
Code: Select all
{if $ccuser->memberof('GroupA')}
{menu category='GroupA'}
{/if}



