• Модуль: imconnector
  • Путь к файлу: ~/bitrix/modules/imconnector/lib/Tools/Connectors/Notifications.php
  • Класс: BitrixImConnectorToolsConnectorsNotifications
  • Вызов: Notifications::getVirtualWhatsappLink
static function getVirtualWhatsappLink(string $portalCode, $langId = LANGUAGE_ID)
{
	$phoneNumber = BitrixNotificationsVirtualWhatsApp::getPhoneNumberByRegion();
	$text = Loc::getMessage(
		'IMCONNECTOR_NOTIFICATIONS_VIRTUAL_WHATSAPP_DEFAULT_MESSAGE',
		[
			'#PORTAL_CODE#' => '#' . $portalCode,
		],
		$langId
	);

	if (!Application::isUtfMode() && !defined('BX_UTF'))
	{
		$text = Encoding::convertEncoding($text, SITE_CHARSET, 'UTF-8');
	}

	return "https://api.whatsapp.com/send/?phone={$phoneNumber}&text=" . rawurlencode($text);
}