Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / entity_bundle_field_info_alter.twig
1 /**
2  * Implements hook_entity_bundle_field_info_alter().
3  */
4 function {{ machine_name }}_entity_bundle_field_info_alter(&$fields, \Drupal\Core\Entity\EntityTypeInterface $entity_type, $bundle) {
5   if ($entity_type->id() == 'node' && $bundle == 'article' && !empty($fields['mymodule_text'])) {
6     // Alter the mymodule_text field to use a custom class.
7     $fields['mymodule_text']->setClass('\Drupal\anothermodule\EntityComputedText');
8   }
9 }