Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Корректировка и дополнение документации метода socialnetwork.api.workgroup.get #1

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
Draft
20 changes: 15 additions & 5 deletions api-reference/sonet-group/socialnetwork-api-workgroup-get.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,24 @@

Метод возвращает данные по рабочей группе

## Параметры
## Параметры метода

{% include [Сноска об обязательных параметрах](../../_includes/required.md) %}

#|
|| **Параметр** | **Описание** | **С версии** ||
|| **groupId** | Идентификатор группы. Обязательный параметр, целое число. | ||
|| **Название** `тип` | **Описание** ||
|| **params*** [`object`](../data-types.md) | Параметры запроса для получения группы. ||
|#

{% include [Сноска о параметрах](../../_includes/required.md) %}
### Параметр `params`

{% include [Сноска об обязательных параметрах](../../_includes/required.md) %}

#|
|| **Название** `тип` | **Описание** ||
|| **groupId*** [`integer`](../data-types.md) | Идентификатор группы. Значение для поля может быть получено методом [sonet_group.get](./sonet-group-get.md). ||
|| **mode** [`string`](../data-types.md) | Режим запроса. Может принимать только значение `mobile`, с помощью которого можно получить дополнительные данные (см. ниже). ||
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Метод Bitrix\Socialnetwork\Controller\Workgroup::getAction, 223-226 строка:

    if (
                                isset($params['mode'])
                                && $params['mode'] === 'mobile'
                        )
                        {
                                $additionalData = Helper\Workgroup::getAdditionalData([
                                        'ids' => [ $groupId ],
                                        'features' => ($params['features'] ?? []),
                                        'mandatoryFeatures' => ($params['mandatoryFeatures'] ?? []),
                                        'currentUserId' => (int)$this->getCurrentUser()->getId(),
                                ]);

                                $groupFields['ADDITIONAL_DATA'] = ($additionalData[$groupId] ?? []) ;
                        }

|#

## Поля

Expand Down Expand Up @@ -92,4 +102,4 @@ BX24.callMethod('socialnetwork.api.workgroup.get', {
console.log(result);
});
```
{% include [Сноска о примерах](../../_includes/examples.md) %}
{% include [Сноска о примерах](../../_includes/examples.md) %}