FormatterBase::isApplicable

public static FormatterBase::isApplicable(FieldDefinitionInterface $field_definition)

Returns if the formatter 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 formatter can be used, FALSE otherwise.

Overrides FormatterInterface::isApplicable

File

core/lib/Drupal/Core/Field/FormatterBase.php, line 156

Class

FormatterBase
Base class for 'Field formatter' plugin implementations.

Namespace

Drupal\Core\Field

Code

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

Please login to continue.