Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/entity.api.php \hook_entity_bundle_info_alter()
  2. 9 core/lib/Drupal/Core/Entity/entity.api.php \hook_entity_bundle_info_alter()

Alter the bundles for entity types.

Parameters

array $bundles: An array of bundles, keyed first by entity type, then by bundle name.

See also

Drupal\Core\Entity\EntityTypeBundleInfo::getBundleInfo()

hook_entity_bundle_info()

Related topics

6 functions implement hook_entity_bundle_info_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

content_moderation_entity_bundle_info_alter in core/modules/content_moderation/content_moderation.module
Implements hook_entity_bundle_info_alter().
content_translation_entity_bundle_info_alter in core/modules/content_translation/content_translation.module
Implements hook_entity_bundle_info_alter().
content_translation_test_entity_bundle_info_alter in core/modules/content_translation/tests/modules/content_translation_test/content_translation_test.module
Implements hook_entity_bundle_info_alter().
entity_test_bundle_class_entity_bundle_info_alter in core/modules/system/tests/modules/entity_test_bundle_class/entity_test_bundle_class.module
Implements hook_entity_bundle_info_alter().
entity_test_entity_bundle_info_alter in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_entity_bundle_info_alter().

... See full list

File

core/lib/Drupal/Core/Entity/entity.api.php, line 901
Hooks and documentation related to entities.

Code

function hook_entity_bundle_info_alter(&$bundles) {
  $bundles['user']['user']['label'] = t('Full account');

  // Override the bundle class for the "article" node type in a custom module.
  $bundles['node']['article']['class'] = 'Drupal\\my_module\\Entity\\Article';
}