function WidgetBase::__construct

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Field/WidgetBase.php \Drupal\Core\Field\WidgetBase::__construct()

Constructs a WidgetBase object.

Parameters

string $plugin_id: The plugin_id for the widget.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Field\FieldDefinitionInterface $field_definition: The definition of the field to which the widget is associated.

array $settings: The widget settings.

array $third_party_settings: Any third party settings.

2 methods override WidgetBase::__construct()
FileWidget::__construct in core/modules/file/src/Plugin/Field/FieldWidget/FileWidget.php
Constructs a WidgetBase object.
MediaLibraryWidget::__construct in core/modules/media_library/src/Plugin/Field/FieldWidget/MediaLibraryWidget.php
Constructs a MediaLibraryWidget widget.

File

core/lib/Drupal/Core/Field/WidgetBase.php, line 50

Class

WidgetBase
Base class for 'Field widget' plugin implementations.

Namespace

Drupal\Core\Field

Code

public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, array $third_party_settings) {
  parent::__construct([], $plugin_id, $plugin_definition);
  $this->fieldDefinition = $field_definition;
  $this->settings = $settings;
  $this->thirdPartySettings = $third_party_settings;
}

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