I’m using the flag friend module, and I’m trying to accomplish what I thought would be an easy task.
Basically I’m trying to achieve some variation of ‘Show all site users in a view, but indicate which ones are the current logged-in user’s friends‘. Should be easy I would have thought, but I’ve spent all day on this and it ain’t working. 🙁
A related option I’ve tried is to actually filter out the friended users, but I can’t get that to work either.
I’m feeling like this question should be more comprehensive, so apologies if that’s the case!
This solution isn’t elegant, but it’d work…
You can get a set of user objects by using the
flag_friend_get_friendsfunction and use that to identify friendly users from the view’s template.If you’d prefer get just the friend uids you can query the table directly using
I’m not super happy with these, but they will work for you.
Hope someone else comes up with something better.