• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Model/Dynamic/TypeTable.php
  • Класс: Bitrix\Crm\Model\Dynamic\TypeTable
  • Вызов: TypeTable::validateEntityTypeId
static function validateEntityTypeId($value, $primary, array $row, \Bitrix\Main\ORM\Fields\Field $field)
{
	$value = (int)$value;
	if (\CCrmOwnerType::isUseDynamicTypeBasedApproach($value))
	{
		return true;
	}

	return 'EntityTypeId should be more or equal than 128 and less than 192';
}