function hook_entity_bundle_info_alter in Drupal 9
Same name and namespace in other branches
- 8 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()
Related topics
5 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_entity_bundle_info_alter in core/
modules/ system/ tests/ modules/ entity_test/ entity_test.module - Implements hook_entity_bundle_info_alter().
- forum_entity_bundle_info_alter in core/
modules/ forum/ forum.module - Implements hook_entity_bundle_info_alter().
File
- core/
lib/ Drupal/ Core/ Entity/ entity.api.php, line 867 - Hooks and documentation related to entities.
Code
function hook_entity_bundle_info_alter(&$bundles) {
$bundles['user']['user']['label'] = t('Full account');
}