You are here

function seven_form_media_library_add_form_upload_alter in Drupal 10

Same name and namespace in other branches
  1. 8 core/themes/seven/seven.theme \seven_form_media_library_add_form_upload_alter()
  2. 9 core/themes/seven/seven.theme \seven_form_media_library_add_form_upload_alter()

Implements hook_form_FORM_ID_alter().

File

core/themes/seven/seven.theme, line 259
Functions to support theming in the Seven theme.

Code

function seven_form_media_library_add_form_upload_alter(array &$form, FormStateInterface $form_state) {
  $form['#attributes']['class'][] = 'media-library-add-form--upload';
  if (isset($form['container'])) {
    $form['container']['#attributes']['class'][] = 'media-library-add-form__input-wrapper';
  }
}