Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using joomla 2.5.

I want to get user group name by providing user id. is there any core function to achieve this task?

share|improve this question

2 Answers

You can find the user group name by the following custom function.

function getUserGroups($gid)
    {
        // Initialise variables.
        $db     = JFactory::getDBO();
        $query  = $db->getQuery(true)
            ->select('a.title AS text')
            ->from('#__usergroups AS a')
            ->where('a.id='.$gid)
            ->group('a.id')
            ->order('a.lft ASC');

        $db->setQuery($query);
        $options = $db->loadObjectList();

        return $options;
    }

Just call this function and pass the groups in the function for example

$user =& JFactory::getUser(48);
$usergroupname = getUserGroups($user->groups[8]);
share|improve this answer

I think this code will help you.

If you need to pass the value through function params means, you can alter the code.I have list the query and the result.

<?php

    $user = JFactory::getUser();

    $db     = JFactory::getDBO();
    $query  = $db->getQuery(true);
    $query->select('s.title AS group_name');
    $query->from('#__user_usergroup_map AS c');
    $query->join('LEFT', '#__usergroups AS s ON s.id = c.group_id' );
    $query->where('c.user_id = '.$user->id);
    $db->setQuery($query);
    $group_name = $db->loadResult();

    echo $group_name;
?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.