DuplicateControl::isControlEnabledFor

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. DuplicateControl
  4. isControlEnabledFor
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integrity/duplicatecontrol.php
  • Класс: Bitrix\Crm\Integrity\DuplicateControl
  • Вызов: DuplicateControl::isControlEnabledFor
static function isControlEnabledFor($entityTypeID)
{
	if(!is_int($entityTypeID))
	{
		throw new Main\ArgumentTypeException('entityTypeID', 'integer');
	}

	if(!\CCrmOwnerType::IsDefined($entityTypeID))
	{
		throw new Main\NotSupportedException("Entity type ID: '{$entityTypeID}' is not supported in current context");
	}
	$entityTypeName = \CCrmOwnerType::ResolveName($entityTypeID);

	//By default control is enabled
	$settings = self::loadCurrentSettings();
	return !isset($settings['enableFor'][$entityTypeName]) || $settings['enableFor'][$entityTypeName] === 'Y';
}

Добавить комментарий