• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/connector/socialnetwork.php
  • Класс: BitrixLandingConnectorSocialNetwork
  • Вызов: SocialNetwork::canPerformOperation
static function canPerformOperation(int $groupId, string $operation): bool
{
	if ($groupId && BitrixMainLoader::includeModule('socialnetwork'))
	{
		return CSocNetFeaturesPerms::canPerformOperation(
			Manager::getUserId(),
			SONET_ENTITY_GROUP,
			$groupId,
			self::SETTINGS_CODE,
			$operation
		);
	}

	return false;
}