function olivero_preprocess_textarea in Drupal 10
Same name and namespace in other branches
- 9 core/themes/olivero/olivero.theme \olivero_preprocess_textarea()
Implements hook_preprocess_HOOK().
File
- core/
themes/ olivero/ olivero.theme, line 328 - Functions to support theming in the Olivero theme.
Code
function olivero_preprocess_textarea(&$variables) {
$variables['attributes']['class'][] = 'form-element';
$variables['attributes']['class'][] = 'form-element--type-textarea';
$variables['attributes']['class'][] = 'form-element--api-textarea';
}