You are here

public static function OliveroPreRender::textFormat in Drupal 10

Same name and namespace in other branches
  1. 9 core/themes/olivero/src/OliveroPreRender.php \Drupal\olivero\OliveroPreRender::textFormat()

Prerender callback for text_format elements.

File

core/themes/olivero/src/OliveroPreRender.php, line 17

Class

OliveroPreRender
Implements trusted prerender callbacks for the Olivero theme.

Namespace

Drupal\olivero

Code

public static function textFormat($element) {
  $element['format']['#attributes']['class'][] = 'filter-wrapper';
  $element['format']['format']['#wrapper_attributes']['class'][] = 'form-item--editor-format';
  $element['format']['format']['#attributes']['class'][] = 'filter-list';
  $element['format']['format']['#attributes']['class'][] = 'form-element--small';
  $element['format']['format']['#attributes']['class'][] = 'form-element--editor-format';
  $element['format']['guidelines']['#attributes']['class'][] = 'filter-guidelines';
  $element['format']['help']['#attributes']['class'][] = 'filter-help';
  return $element;
}