Skip to content

Instantly share code, notes, and snippets.

@derhasi
Last active January 31, 2017 18:42
Show Gist options
  • Save derhasi/e9df432f499712e848764e1fa32b3201 to your computer and use it in GitHub Desktop.
Save derhasi/e9df432f499712e848764e1fa32b3201 to your computer and use it in GitHub Desktop.
Delete all entities of a entity type $entity_type
$controller = \Drupal::entityManager()->getStorage($entity_type);
$entities = $controller->loadMultiple(NULL);
dvm(array_keys($entities));
$controller->delete($entities);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment