Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / field_widget_form_alter.twig
1 /**
2  * Implements hook_field_widget_form_alter().
3  */
4 function {{ machine_name }}_field_widget_form_alter(&$element, \Drupal\Core\Form\FormStateInterface $form_state, $context) {
5   // Add a css class to widget form elements for all fields of type mytype.
6   $field_definition = $context['items']->getFieldDefinition();
7   if ($field_definition->getType() == 'mytype') {
8     // Be sure not to overwrite existing attributes.
9     $element['#attributes']['class'][] = 'myclass';
10   }
11 }