You are here

public function EntityTypeBundleInfoInterface::getBundleInfo in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/EntityTypeBundleInfoInterface.php \Drupal\Core\Entity\EntityTypeBundleInfoInterface::getBundleInfo()
  2. 10 core/lib/Drupal/Core/Entity/EntityTypeBundleInfoInterface.php \Drupal\Core\Entity\EntityTypeBundleInfoInterface::getBundleInfo()

Gets the bundle info of an entity type.

Parameters

string $entity_type_id: The entity type ID.

Return value

array An array of bundle information where the outer array is keyed by the bundle name, or the entity type name if the entity does not have bundles. The inner arrays are associative arrays of bundle information, such as the label for the bundle.

2 methods override EntityTypeBundleInfoInterface::getBundleInfo()
EntityManager::getBundleInfo in core/lib/Drupal/Core/Entity/EntityManager.php
EntityTypeBundleInfo::getBundleInfo in core/lib/Drupal/Core/Entity/EntityTypeBundleInfo.php
Gets the bundle info of an entity type.

File

core/lib/Drupal/Core/Entity/EntityTypeBundleInfoInterface.php, line 33

Class

EntityTypeBundleInfoInterface
Provides an interface for an entity type bundle info.

Namespace

Drupal\Core\Entity

Code

public function getBundleInfo($entity_type_id);