public static function AutoImageStyleMediaResponsive::isApplicable in Auto image style 8
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/ AutoImageStyleMediaResponsive.php, line 242
Class
- AutoImageStyleMediaResponsive
- Plugin for responsive media image formatter.
Namespace
Drupal\auto_image_style\Plugin\Field\FieldFormatterCode
public static function isApplicable(FieldDefinitionInterface $field_definition) {
return $field_definition
->getFieldStorageDefinition()
->getSetting('target_type') == 'media';
}