ea641313331a835a37522a8a4689b580eaa18ccd
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / entity_field_storage_info_alter.twig
1 /**
2  * Implements hook_entity_field_storage_info_alter().
3  */
4 function {{ machine_name }}_entity_field_storage_info_alter(&$fields, \Drupal\Core\Entity\EntityTypeInterface $entity_type) {
5   // Alter the max_length setting.
6   if ($entity_type->id() == 'node' && !empty($fields['mymodule_text'])) {
7     $fields['mymodule_text']->setSetting('max_length', 128);
8   }
9 }