Working with users and user groups in Bitrix via D7
Rus
Eng
Работа с пользователями и группами пользователей в Битрикс через D7

All English-language materials have been translated fully automatically using the Google service

Getting the list of groups

  $ result = \ Bitrix \ Main \ GroupTable :: getList (array (
    'select' => array ('NAME', 'ID', 'STRING_ID', 'C_SORT'), // Name, identifier, character code, sorting
    'filter' => array ('! ID' => '1') // Get all groups except the admin group
));

while ($ arGroup = $ result-> fetch ()) {
// Process the result
}  

Getting the list of active user groups

So

  global $ USER;

\ Bitrix \ Main \ UserTable :: getUserGroupIds ($ USER-> GetID ());  

or so

  $ result = \ Bitrix \ Main \ UserGroupTable :: getList (array (
    'filter' => array ('USER_ID' => $ USER-> GetID (), 'GROUP.ACTIVE' => 'Y'),
    'select' => array ('GROUP_ID', 'GROUP_CODE' => 'GROUP.STRING_ID'), // select the group ID and group symbolic code
    'order' => array ('GROUP.C_SORT' => 'ASC'), // sort according to group sort
));

while ($ arGroup = $ result-> fetch ()) {
// Process the result
}

 

Getting the list of active users in the group

  $ result = \ Bitrix \ Main \ UserGroupTable :: getList (array (
    'filter' => array ('GROUP_ID' => 5, 'USER.ACTIVE' => 'Y'),
    'select' => array ('USER_ID', 'NAME' => 'USER.NAME', 'LAST_NAME' => 'USER.LAST_NAME'), // select the username, first and last name
    'order' => array ('USER.ID' => 'DESC'), // sort by user ID
));

while ($ arGroup = $ result-> fetch ()) {
    // Process the result
}  

Add user to group

  \ Bitrix \ Main \ UserGroupTable :: add (array (
"USER_ID" => $ REQUEST ['USER_ID'],
"GROUP_ID" => 5,
));  

Remove user from group

  \ Bitrix \ Main \ UserGroupTable :: delete (array (
"USER_ID" => $ REQUEST ['USER_ID'],
"GROUP_ID" => 5,
));  

Check if the user belongs to groups

  CSite :: InGroup (array (4,5))  

Get a user by ID

  $ dbUser = \ Bitrix \ Main \ UserTable :: getList (array (
'select' => array ('ID', 'NAME', 'PERSONAL_PHOTO', 'PERSONAL_WWW'),
'filter' => array ('ID' => $ USER-> GetID ())
));
if ($ arUser = $ dbUser-> fetch ()) {
print_r ($ arUser);
}  

Get user ID by EMAIL

  // D7
use Bitrix \ Main \ UserTable;

$ user = UserTable :: getList ([
    'select' => array ('ID'),
    'filter' => array ('EMAIL' => 'user @ mail')
]) -> fetch ();

echo $ user ['ID'];

// old
$ cUser = $ USER :: GetList (
    $ by = "ID",
    $ order = "desc",
    array (
        'EMAIL' => 'user @ mail'
    ),
    array (
        'SELECT' => array ('ID')
    )
) -> fetch ();

echo $ cUser ['ID'];  

Comments

There are no comments yet, you can be the first to leave it

Leave a comment

The site uses a comment pre-moderation system, so your message will be published only after approval by the moderator

You are replying to a user's comment

Send

FEEDBACK

Email me

Are you developing a new service, making improvements to the existing one and want to be better than your competitors? You have come to the right place. I offer you a comprehensive studio-level website development. From me you can order design, layout, programming, development of non-traditional functionality, implementation of communication between CMS, CRM and Data Analitics, as well as everything else related to sites, except for promotion.

Contact, I will always advise on all questions and help you find the most effective solution for your business. I am engaged in the creation of sites in Novosibirsk and in other regions of Russia, I also work with the CIS countries. You will be satisfied with our cooperation

An error occurred while sending, please try again after a while
Message sent successfully

Phones

+7(993) 007-18-96

Email

info@tichiy.ru

Address

Россия, г. Москва

By submitting the form, you automatically confirm that you have read and accept the Privacy Policy site

Contact with me
Send message
By submitting the form, you automatically confirm that you have read and accept Privacy policy of site
Sending successful!
Thank you for contacting :) I will contact you as soon as possible
Sending failed
An error occurred while sending the request. Please wait and try again after a while or call my phone number