Creating Field Widget
Field widgets are used to visualize a field within forms. Field widgets are defined as plugins, so it is recommended to review the Plugin API before writing a new field type.
To create a field widget in Drupal 8, you need a class with the @FieldWidget
annotation.
Location of the field widget class should be /[MODULE_NAME]/src/Plugin/Field/FieldWidget
. For example, /foo/src/Plugin/Field/FieldWidget/BarWidget.php
.
Namespace of the class should be [MODULE_NAME]\Plugin\Field\FieldWidget
. For example, \Drupal\foo\Plugin\Field\FieldWidget
.
Annotation above the class should include a unique ID, label, and an array of field type IDs that the widget can handle.
/** * A widget bar. * * @FieldWidget( * id = "bar", * label = @Translation("Bar widget"), * field_types = { * "baz", * "string" * } * ) */
The class must implement WidgetInterface
. It may extend WidgetBase
for a common implementation. The only required method is ::formElement()
, which returns the actual form elements representing your widget.
use Drupal\Core\Field\FieldItemListInterface; use Drupal\Core\Field\WidgetBase; use Drupal\Core\Form\FormStateInterface; //... class BarWidget extends WidgetBase { /** * {@inheritdoc} */ public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) { $element = []; // Build the element render array. return $element; } }
Widget Settings
If your widget needs custom settings, you’ll need to follow these three steps:
- Override PluginSettingsBase::defaultSettings() to define default values
- Create a configuration schema for your settings
- Create a form to let users configure settings
Step 1: Override defaultSettings()
/** * {@inheritdoc} */ public static function defaultSettings() { return [ 'size' => 60, ] + parent::defaultSettings(); }
Step 2: Create a configuration schema
Located at:
/[MODULE_NAME]/config/schema/[MODULE_NAME].schema.yml
Describe the settings added in defaultSettings()
:
field.widget.settings.[WIDGET ID]: type: mapping label: 'WIDGET NAME widget settings' mapping: size: type: integer label: 'Size'
Step 3: Create a settings form
/** * {@inheritdoc} */ public function settingsForm(array $form, FormStateInterface $form_state) { $element['size'] = [ '#type' => 'number', '#title' => $this->t('Size of textfield'), '#default_value' => $this->getSetting('size'), '#required' => TRUE, '#min' => 1, ]; return $element; }
Provide a summary of the settings using settingsSummary()
:
/** * {@inheritdoc} */ public function settingsSummary() { $summary = []; $summary[] = $this->t('Textfield size: @size', ['@size' => $this->getSetting('size')]); return $summary; }
You can use getSetting() to access settings within your widget:
class BarWidget extends WidgetBase implements WidgetInterface { /** * {@inheritdoc} */ public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) { $element['value'] = $element + [ '#type' => 'textfield', '#default_value' => isset($items[$delta]->value) ? $items[$delta]->value : NULL, '#size' => $this->getSetting('size'), ]; return $element; } }
Widget Example
TextWidget from the Examples module's field_example:
namespace Drupal\field_example\Plugin\Field\FieldWidget; use Drupal\Core\Field\FieldItemListInterface; use Drupal\Core\Field\WidgetBase; use Drupal\Core\Form\FormStateInterface; /** * Plugin implementation of the 'field_example_text' widget. * * @FieldWidget( * id = "field_example_text", * module = "field_example", * label = @Translation("RGB value as #ffffff"), * field_types = { * "field_example_rgb" * } * ) */ class TextWidget extends WidgetBase { /** * {@inheritdoc} */ public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) { $value = isset($items[$delta]->value) ? $items[$delta]->value : ''; $element += [ '#type' => 'textfield', '#default_value' => $value, '#size' => 7, '#maxlength' => 7, '#element_validate' => [ [static::class, 'validate'], ], ]; return ['value' => $element]; } /** * Validate the color text field. */ public static function validate($element, FormStateInterface $form_state) { $value = $element['#value']; if (strlen($value) == 0) { $form_state->setValueForElement($element, ''); return; } if (!preg_match('/^#([a-f0-9]{6})$/iD', strtolower($value))) { $form_state->setError($element, t("Color must be a 6-digit hexadecimal value, suitable for CSS.")); } } }
Drupal’s online documentation is © 2000-2020 by the individual contributors and can be used in accordance with the Creative Commons License, Attribution-ShareAlike 2.0. PHP code is distributed under the GNU General Public License.