public static function PaymentMethodWidget::isApplicable in Commerce Recurring Framework 8
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 WidgetBase::isApplicable
File
- src/
Plugin/ Field/ FieldWidget/ PaymentMethodWidget.php, line 150
Class
- PaymentMethodWidget
- Plugin implementation of the 'commerce_recurring_payment_method' widget.
Namespace
Drupal\commerce_recurring\Plugin\Field\FieldWidgetCode
public static function isApplicable(FieldDefinitionInterface $field_definition) {
$entity_type = $field_definition
->getTargetEntityTypeId();
$field_name = $field_definition
->getName();
return $entity_type == 'commerce_subscription' && $field_name == 'payment_method';
}