• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/commentaux/share.php
  • Класс: BitrixSocialnetworkCommentAuxShare
  • Вызов: Share::setRatingNotificationParams
protected function setRatingNotificationParams(array $fields = []): bool
{
	$dest = explode('|', $fields['SHARE_DEST']);
	$dest = array_values(array_filter($dest, static function ($item) { return ($item !== 'mention'); }));
	$dest = explode(',', $dest[0]);

	if (empty($dest))
	{
		return false;
	}

	$this->setParams([
		'destinationList' => $dest,
		'hiddenDestinationList' => []
	]);

	return true;
}