public static function DefaultWebformHandler::supports in CMS Content Sync 2.1.x
Same name and namespace in other branches
- 8 src/Plugin/cms_content_sync/field_handler/DefaultWebformHandler.php \Drupal\cms_content_sync\Plugin\cms_content_sync\field_handler\DefaultWebformHandler::supports()
- 2.0.x src/Plugin/cms_content_sync/field_handler/DefaultWebformHandler.php \Drupal\cms_content_sync\Plugin\cms_content_sync\field_handler\DefaultWebformHandler::supports()
Check if this handler supports the given field instance.
Parameters
string $entity_type:
string $bundle:
string $field_name:
Return value
bool
Overrides FieldHandlerInterface::supports
File
- src/
Plugin/ cms_content_sync/ field_handler/ DefaultWebformHandler.php, line 24
Class
- DefaultWebformHandler
- Implements webform references.
Namespace
Drupal\cms_content_sync\Plugin\cms_content_sync\field_handlerCode
public static function supports($entity_type, $bundle, $field_name, FieldDefinitionInterface $field) {
if (!in_array($field
->getType(), [
'webform',
])) {
return false;
}
return true;
}