Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / element_info_alter.twig
1 /**
2  * Implements hook_element_info_alter().
3  */
4 function {{ machine_name }}_element_info_alter(array &$info) {
5   // Decrease the default size of textfields.
6   if (isset($info['textfield']['#size'])) {
7     $info['textfield']['#size'] = 40;
8   }
9 }