/** * Implements hook_entity_bundle_field_info(). */ function {{ machine_name }}_entity_bundle_field_info(\Drupal\Core\Entity\EntityTypeInterface $entity_type, $bundle, array $base_field_definitions) { // Add a property only to nodes of the 'article' bundle. if ($entity_type->id() == 'node' && $bundle == 'article') { $fields = []; $storage_definitions = mymodule_entity_field_storage_info($entity_type); $fields['mymodule_bundle_field'] = FieldDefinition::createFromFieldStorageDefinition($storage_definitions['mymodule_bundle_field']) ->setLabel(t('Bundle Field')); return $fields; } }