You are here

function thunder_media_inline_entity_form_entity_form_alter in Thunder 8.2

Same name and namespace in other branches
  1. 8.5 modules/thunder_media/thunder_media.module \thunder_media_inline_entity_form_entity_form_alter()
  2. 8.3 modules/thunder_media/thunder_media.module \thunder_media_inline_entity_form_entity_form_alter()
  3. 8.4 modules/thunder_media/thunder_media.module \thunder_media_inline_entity_form_entity_form_alter()
  4. 6.2.x modules/thunder_media/thunder_media.module \thunder_media_inline_entity_form_entity_form_alter()
  5. 6.0.x modules/thunder_media/thunder_media.module \thunder_media_inline_entity_form_entity_form_alter()
  6. 6.1.x modules/thunder_media/thunder_media.module \thunder_media_inline_entity_form_entity_form_alter()

Implements hook_inline_entity_form_entity_form_alter().

File

modules/thunder_media/thunder_media.module, line 147
Contains media related functions.

Code

function thunder_media_inline_entity_form_entity_form_alter(&$entity_form, FormStateInterface $form_state) {
  if (isset($entity_form['field_media_images'])) {
    $entity_form['field_media_images']['#attributes']['class'][] = 'media-form__items-widget-container';
  }
}