Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / language_types_info_alter.twig
1 /**
2  * Implements hook_language_types_info_alter().
3  */
4 function {{ machine_name }}_language_types_info_alter(array &$language_types) {
5   if (isset($language_types['custom_language_type'])) {
6     $language_types['custom_language_type_custom']['description'] = t('A far better description.');
7   }
8 }