• Модуль: imconnector
  • Путь к файлу: ~/bitrix/modules/imconnector/lib/connectors/facebookcomments.php
  • Класс: BitrixImConnectorConnectorsFacebookComments
  • Вызов: FacebookComments::processingChat
protected function processingChat(array $chat): array
{
	if (!empty($chat['url']))
	{
		$chat['description'] = Loc::getMessage(
			'IMCONNECTOR_LINK_TO_ORIGINAL_POST_IN_FACEBOOK',
			[
				'#LINK#' => $chat['url']
			]
		);

		unset($chat['url']);
	}

	return $chat;
}