• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/ads/adsform.php
  • Класс: Bitrix\Crm\Ads\AdsForm
  • Вызов: AdsForm::getServiceTypes
static function getServiceTypes()
{
	$types = [];
	foreach (parent::getServiceTypes() as $type)
	{
		if ($type === LeadAds\Service::TYPE_VKONTAKTE && self::isDisabled())
		{
			continue;
		}

		if ($type === LeadAds\Service::TYPE_FACEBOOK && Integration\Bitrix24\Product::isRegionRussian(true))
		{
			continue;
		}

		$types[] = $type;
	}

	return $types;
}