protected function Fieldset::preprocessElement in Open Social 8.6
Same name and namespace in other branches
- 8.9 themes/socialbase/src/Plugin/Preprocess/Fieldset.php \Drupal\socialbase\Plugin\Preprocess\Fieldset::preprocessElement()
- 8 themes/socialbase/src/Plugin/Preprocess/Fieldset.php \Drupal\socialbase\Plugin\Preprocess\Fieldset::preprocessElement()
- 8.2 themes/socialbase/src/Plugin/Preprocess/Fieldset.php \Drupal\socialbase\Plugin\Preprocess\Fieldset::preprocessElement()
- 8.3 themes/socialbase/src/Plugin/Preprocess/Fieldset.php \Drupal\socialbase\Plugin\Preprocess\Fieldset::preprocessElement()
- 8.4 themes/socialbase/src/Plugin/Preprocess/Fieldset.php \Drupal\socialbase\Plugin\Preprocess\Fieldset::preprocessElement()
- 8.5 themes/socialbase/src/Plugin/Preprocess/Fieldset.php \Drupal\socialbase\Plugin\Preprocess\Fieldset::preprocessElement()
- 8.7 themes/socialbase/src/Plugin/Preprocess/Fieldset.php \Drupal\socialbase\Plugin\Preprocess\Fieldset::preprocessElement()
- 8.8 themes/socialbase/src/Plugin/Preprocess/Fieldset.php \Drupal\socialbase\Plugin\Preprocess\Fieldset::preprocessElement()
Preprocess the variables array if an element is present.
Parameters
\Drupal\bootstrap\Utility\Element $element: The Element object.
\Drupal\bootstrap\Utility\Variables $variables: The Variables object.
Overrides PreprocessBase::preprocessElement
File
- themes/
socialbase/ src/ Plugin/ Preprocess/ Fieldset.php, line 21
Class
- Fieldset
- Pre-processes variables for the "fieldset" theme hook.
Namespace
Drupal\socialbase\Plugin\PreprocessCode
protected function preprocessElement(Element $element, Variables $variables) {
if (isset($element['#type']) && $element['#type'] == ('radios' || 'checkboxes')) {
$variables['form_group'] = TRUE;
}
}