...Человеческий поиск в разработке...
- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/integrity/duplicatecontrol.php
- Класс: Bitrix\Crm\Integrity\DuplicateControl
- Вызов: DuplicateControl::isEnabledFor
public function isEnabledFor($entityTypeID) { if(!is_int($entityTypeID)) { throw new Main\ArgumentTypeException('entityTypeID', 'integer'); } if(!\CCrmOwnerType::IsDefined($entityTypeID)) { throw new Main\NotSupportedException("Entity ID: '{$entityTypeID}' is not supported in current context"); } $entityTypeName = \CCrmOwnerType::ResolveName($entityTypeID); //By default control is enabled return !isset($this->settings['enableFor'][$entityTypeName]) || $this->settings['enableFor'][$entityTypeName] === 'Y'; }