uswds-8.x-2.1-rc1/preprocess/element/select.preprocess.inc
preprocess/element/select.preprocess.inc
<?php
/**
* @file
* Preprocess function for this hook.
*/
/**
* Implements hook_preprocess_select().
*/
function uswds_preprocess_select(&$variables) {
// Add the usa-select class to select form elements.
$variables['attributes']['class'][] = 'usa-select';
}
