MyBB Community Forums

Full Version: Check user's user group!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
--SNIP-- Got it to work Smile
What i do is

if ( IsCurrentUserInGroup("1,2,3,4,20,30,40,50") ) {
    echo "user is in one of given groups";
}

function IsCurrentUserInGroup ($groups="") {
	global $mybb;
	
	if ( in_array($mybb->user['usergroup'],explode(",",$groups)) || array_intersect(explode(",",$mybb->user['additionalgroups']),explode(",",$groups))) {
		return true;
	}
	return false;	
}
Do you mean is_member() ? Oh yeah, that is in 1.8 Big Grin

And PluginLibrary for 1.6 Smile
(2014-07-20, 08:50 PM)Omar G. Wrote: [ -> ]Oh yeah, that is in 1.8 Big Grin

...and many other cool things as i seen in previews, Cant wait for stable Big Grin
(2014-07-20, 09:01 PM)avril Wrote: [ -> ]
(2014-07-20, 08:50 PM)Omar G. Wrote: [ -> ]Oh yeah, that is in 1.8 Big Grin
Cant wait for stable Big Grin
Wouldn't be much Big Grin