You are here

public static function EntityFields::hideTextFormatElement in Simplifying 8

Hide entity form text format element.

File

src/Services/EntityFields.php, line 131

Class

EntityFields
Class EntityFields.

Namespace

Drupal\simplifying\Services

Code

public static function hideTextFormatElement($element) {
  if (!empty($element['format'])) {
    $element['format']['#prefix'] = '<div class="hidden">';
    $element['format']['#suffix'] = '</div>';
  }
  return $element;
}