• Модуль: ui
  • Путь к файлу: ~/bitrix/modules/ui/lib/entityform/scope.php
  • Класс: BitrixUiEntityFormScope
  • Вызов: Scope::removeScopeMembers
private function removeScopeMembers(int $configId): void
{
	$entity = EntityFormConfigAcTable::getEntity();
	$connection = $entity->getConnection();

	$filter = ['CONFIG_ID' => $configId];

	$connection->query(sprintf(
		'DELETE FROM %s WHERE %s',
		$connection->getSqlHelper()->quote($entity->getDBTableName()),
		Query::buildFilterSql($entity, $filter)
	));
}