You are here

function claro_theme_suggestions_form_element_alter in Drupal 9

Same name and namespace in other branches
  1. 8 core/themes/claro/claro.theme \claro_theme_suggestions_form_element_alter()

Implements hook_theme_suggestions_HOOK_alter() for form_element.

File

core/themes/claro/claro.theme, line 27
Functions to support theming in the Claro theme.

Code

function claro_theme_suggestions_form_element_alter(&$suggestions, $variables) {
  if (!empty($variables['element']['#type'])) {
    $suggestions[] = 'form_element__' . $variables['element']['#type'];
  }
}