You are here

public function BrokenWidget::isApplicable in Typed Data API enhancements 8

Returns if the widget can be used for the provided data.

Parameters

\Drupal\Core\TypedData\DataDefinitionInterface $definition: The definition of the edited data.

Return value

bool Whether the data can be edited with the widget.

Overrides FormWidgetInterface::isApplicable

File

src/Plugin/TypedDataFormWidget/BrokenWidget.php, line 34

Class

BrokenWidget
Plugin implementation of the 'broken' widget.

Namespace

Drupal\typed_data\Plugin\TypedDataFormWidget

Code

public function isApplicable(DataDefinitionInterface $definition) {
  return TRUE;
}