public static function FieldHandlerInterface::supports in CMS Content Sync 8
Same name and namespace in other branches
- 2.1.x src/Plugin/FieldHandlerInterface.php \Drupal\cms_content_sync\Plugin\FieldHandlerInterface::supports()
- 2.0.x src/Plugin/FieldHandlerInterface.php \Drupal\cms_content_sync\Plugin\FieldHandlerInterface::supports()
Check if this handler supports the given field instance.
Parameters
string $entity_type:
string $bundle:
string $field_name:
Return value
bool
10 methods override FieldHandlerInterface::supports()
- DefaultEntityReferenceHandler::supports in src/
Plugin/ cms_content_sync/ field_handler/ DefaultEntityReferenceHandler.php - Check if this handler supports the given field instance.
- DefaultFieldHandler::supports in src/
Plugin/ cms_content_sync/ field_handler/ DefaultFieldHandler.php - Check if this handler supports the given field instance.
- DefaultFileHandler::supports in src/
Plugin/ cms_content_sync/ field_handler/ DefaultFileHandler.php - Check if this handler supports the given field instance.
- DefaultFormattedTextHandler::supports in src/
Plugin/ cms_content_sync/ field_handler/ DefaultFormattedTextHandler.php - Check if this handler supports the given field instance.
- DefaultLayoutBuilderHandler::supports in src/
Plugin/ cms_content_sync/ field_handler/ DefaultLayoutBuilderHandler.php - Check if this handler supports the given field instance.
File
- src/
Plugin/ FieldHandlerInterface.php, line 34
Class
- FieldHandlerInterface
- Specifies the publicly available methods of a field handler plugin that can be used to push and pull fields with Sync Core.
Namespace
Drupal\cms_content_sync\PluginCode
public static function supports($entity_type, $bundle, $field_name, FieldDefinitionInterface $field);