uswds-8.x-2.1-rc1/preprocess/element/vertical_tabs.preprocess.inc
preprocess/element/vertical_tabs.preprocess.inc
<?php
/**
* @file
* Preprocess function for this hook.
*/
use Drupal\Core\Render\Markup;
/**
* Implements hook_preprocess_vertical_tabs().
*/
function uswds_preprocess_vertical_tabs(&$variables) {
$prefix = '<ul class="usa-accordion usa-accordion--bordered add-list-reset">';
$suffix = '</ul><!-- USWDS fieldset end -->';
$content = $variables['children'];
$content = str_replace($prefix, '', $content);
$content = str_replace($suffix, '', $content);
$variables['children'] = Markup::create($content);
$variables['attributes']['class'][] = 'usa-accordion usa-accordion--bordered';
}
