Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / field_info_alter.twig
1 /**
2  * Implements hook_field_info_alter().
3  */
4 function {{ machine_name }}_field_info_alter(&$info) {
5   // Change the default widget for fields of type 'foo'.
6   if (isset($info['foo'])) {
7     $info['foo']['default widget'] = 'mymodule_widget';
8   }
9 }