WidgetBase::isApplicable

public static WidgetBase::isApplicable(FieldDefinitionInterface $field_definition)

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

Parameters

\Drupal\Core\Field\FieldDefinitionInterface $field_definition: The field definition that should be checked.

Return value

bool TRUE if the widget can be used, FALSE otherwise.

Overrides WidgetInterface::isApplicable

File

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

Class

WidgetBase
Base class for 'Field widget' plugin implementations.

Namespace

Drupal\Core\Field

Code

public static function isApplicable(FieldDefinitionInterface $field_definition) {
  // By default, widgets are available for all fields.
  return TRUE;
}
doc_Drupal
2016-10-29 09:56:42
Comments
Leave a Comment

Please login to continue.