Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / config_schema_info_alter.twig
1 /**
2  * Implements hook_config_schema_info_alter().
3  */
4 function {{ machine_name }}_config_schema_info_alter(&$definitions) {
5   // Enhance the text and date type definitions with classes to generate proper
6   // form elements in ConfigTranslationFormBase. Other translatable types will
7   // appear as a one line textfield.
8   $definitions['text']['form_element_class'] = '\Drupal\config_translation\FormElement\Textarea';
9   $definitions['date_format']['form_element_class'] = '\Drupal\config_translation\FormElement\DateFormat';
10 }