...Человеческий поиск в разработке...
- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/Relation/EntityRelationTable.php
- Класс: Bitrix\Crm\Relation\EntityRelationTable
- Вызов: EntityRelationTable::deleteByEntityTypeId
static function deleteByEntityTypeId(int $entityTypeId): void { $connection = Application::getConnection(); $helper = $connection->getSqlHelper(); /** @noinspection SqlResolve */ $connection->query(sprintf( 'DELETE FROM %s WHERE SRC_ENTITY_TYPE_ID = %d OR DST_ENTITY_TYPE_ID = %d', $helper->quote(static::getTableName()), $helper->convertToDbInteger($entityTypeId), $helper->convertToDbInteger($entityTypeId) )); }