You are here

public static function InvoiceTotalSummary::isApplicable in Commerce Invoice 8.2

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 FormatterBase::isApplicable

File

src/Plugin/Field/FieldFormatter/InvoiceTotalSummary.php, line 95

Class

InvoiceTotalSummary
Plugin implementation of the 'commerce_invoice_total_summary' formatter.

Namespace

Drupal\commerce_invoice\Plugin\Field\FieldFormatter

Code

public static function isApplicable(FieldDefinitionInterface $field_definition) {
  $entity_type = $field_definition
    ->getTargetEntityTypeId();
  $field_name = $field_definition
    ->getName();
  return $entity_type == 'commerce_invoice' && $field_name == 'total_price';
}