socialbase-1.1.0/src/Plugin/Preprocess/Fieldset.php
src/Plugin/Preprocess/Fieldset.php
<?php
namespace Drupal\socialbase\Plugin\Preprocess;
use Drupal\bootstrap\Plugin\Preprocess\PreprocessBase;
use Drupal\bootstrap\Utility\Element;
use Drupal\bootstrap\Utility\Variables;
/**
* Pre-processes variables for the "fieldset" theme hook.
*
* @ingroup plugins_preprocess
*
* @BootstrapPreprocess("fieldset")
*/
class Fieldset extends PreprocessBase {
/**
* {@inheritdoc}
*/
protected function preprocessElement(Element $element, Variables $variables): void {
if (isset($element['#type']) && (($element['#type'] == 'radios') || ($element['#type'] == 'checkboxes'))) {
$variables['form_group'] = TRUE;
}
}
}
