Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Data Model Questions /

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Get a list of a Members Groups?


Go to End


2 Posts   3517 Views

Avatar
Gutur

Community Member, 17 Posts

22 February 2009 at 5:15am

Hi there,

the basic idea is that I have entries in the DB that "belong" to a certain user (I store the creators UserID in the DB).
Users who are in one of the groups as this "owner" are allowed to view the entry.

What baffles me, how do I get a list of groups a user is in?
For instance "Member::currentMember() ? Member::currentMember()->Groups()" gives me a "ComponentSet" and not a list of GroupIDs and I can't figure out how to get a list of GroupIDs for a certain UserID out of this...

Anyone an idea for me?

Thanks in advance /Carsten

Avatar
Gutur

Community Member, 17 Posts

22 February 2009 at 9:28am

Me again, got the answer on IRC from simon_w:
Permission::groupList($member->ID);
gives a nice array of all the group IDs that the user is in.
Thus I can feed it directly to inGroups() on another user to see if they share a group ;)
/Carsten