• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/ads/adsform.php
  • Класс: Bitrix\Crm\Ads\AdsForm
  • Вызов: AdsForm::hasFormLinks
static function hasFormLinks($crmFormId, $type = null)
{
	$types = isset($type)? [$type] : static::getServiceTypes();

	foreach ($types as $serviceType)
	{
		if (count(static::getFormLinks($crmFormId, $serviceType)) > 0)
		{
			return true;
		}
	}

	return false;
}