class TextfieldWidget

Same name and namespace in other branches
  1. 11.x core/modules/text/src/Plugin/Field/FieldWidget/TextfieldWidget.php \Drupal\text\Plugin\Field\FieldWidget\TextfieldWidget
  2. 10 core/modules/text/src/Plugin/Field/FieldWidget/TextfieldWidget.php \Drupal\text\Plugin\Field\FieldWidget\TextfieldWidget

Plugin implementation of the 'text_textfield' widget.

Plugin annotation


@FieldWidget(
  id = "text_textfield",
  label = @Translation("Text field"),
  field_types = {
    "text"
  },
)

Hierarchy

Expanded class hierarchy of TextfieldWidget

1 file declares its use of TextfieldWidget
TestTextfieldWidget.php in core/modules/field/tests/modules/field_plugins_test/src/Plugin/Field/FieldWidget/TestTextfieldWidget.php

File

core/modules/text/src/Plugin/Field/FieldWidget/TextfieldWidget.php, line 21

Namespace

Drupal\text\Plugin\Field\FieldWidget
View source
class TextfieldWidget extends StringTextfieldWidget {
  
  /**
   * {@inheritdoc}
   */
  public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
    $main_widget = parent::formElement($items, $delta, $element, $form, $form_state);
    $element = $main_widget['value'];
    $element['#type'] = 'text_format';
    $element['#format'] = $items[$delta]->format ?? NULL;
    $element['#base_type'] = $main_widget['value']['#type'];
    return $element;
  }
  
  /**
   * {@inheritdoc}
   */
  public function errorElement(array $element, ConstraintViolationInterface $violation, array $form, FormStateInterface $form_state) {
    if (isset($element['format']['#access']) && !$element['format']['#access'] && preg_match('/^[0-9]*\\.format$/', $violation->getPropertyPath())) {
      // Ignore validation errors for formats that may not be changed,
      // such as when existing formats become invalid.
      // See \Drupal\filter\Element\TextFormat::processFormat().
      return FALSE;
    }
    return $element;
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.