kgaut.net // Développeur web PHP / Drupal freelance
contactez-moi

Drupal 8 - Supprimer un type d'entité

Cet article a été écrit il y a plus de quatre ans, son contenu n'est peut-être plus d'actualité.

Dans mon_module.install :

/**
 * Remove Product entity type
 */
function mon_module_update_8001() {
  $entity_type = 'product';
  $entity_update_manager = \Drupal::entityDefinitionUpdateManager();
  $entity_type = $entity_update_manager->getEntityType(entity_type);
  $entity_update_manager->uninstallEntityType($entity_type);
}

 

Commentaires (0)