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