John L.
Well-known member
Hi All,
Quick question, in an addon I'm working I am searching for all the usergroups in XenForo:
Is there an SQL query that will allow me to ignore usergroups that do not have any users in them? Appreciate the help!
Quick question, in an addon I'm working I am searching for all the usergroups in XenForo:
PHP:
public function getUserGroups()
{
return $this->_getDb()->fetchAll('
SELECT user_group_id, title
FROM xf_user_group
WHERE user_group_id !=1
ORDER BY user_group_id
');
}