• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/contactcenter.php
  • Класс: BitrixIntranetContactCenter
  • Вызов: ContactCenter::getWhatsAppFormListItem
private function getWhatsAppFormListItem($filter = array()): array
{
	if (WebFormWhatsApp::isSetupCompleted())
	{
		$link = WebFormWhatsApp::getDefaultFormEditUrl();
		$linkType = 'newWindow';
		$selected = true;
	}
	else
	{
		$link = WebFormWhatsApp::getSetupLink();
		$linkType = 'slider';
		$selected = false;
	}

	return [
		"NAME" => Loc::getMessage("CONTACT_CENTER_WHATSAPP"),
		"SELECTED" => $selected,
		"FORM_ID" => WebFormWhatsApp::getDefaultFormId(),
		"LOGO_CLASS" => "ui-icon ui-icon-service-whatsapp",
		"LINK_TYPE" => $linkType,
		"LINK" => $link,
	];
}