function classy_form_alter in Drupal 9
Same name and namespace in other branches
- 8 core/themes/classy/classy.theme \classy_form_alter()
Implements hook_form_alter().
File
- core/
themes/ classy/ classy.theme, line 33 - Functions to support theming in the Classy theme.
Code
function classy_form_alter(array &$form, FormStateInterface $form_state, $form_id) {
$form_object = $form_state
->getFormObject();
if ($form_object instanceof ViewsForm && strpos($form_object
->getBaseFormId(), 'views_form_media_library') === 0) {
$form['#attributes']['class'][] = 'media-library-views-form';
}
}