valentine94
7/12/2017 - 8:55 AM

Get a list of enity bundles

Get a list of enity bundles

<?php
function getEntityBundles(string $entity_type):array {
  $bundles = [];
  $entity_type_manager = \Drupal::entityTypeManager();
  $type = $entity_type_manager
    ->getDefinition($entity_type)
    ->getBundleEntityType();
  foreach ($entity_type_manager->getStorage($type)->loadMultiple() as $bundle) {
    $bundles[$bundle->id()] = $bundle;
  }
  return $bundles;
}