public function FieldMappingBase::supportsCustomFields in Webform Content Creator 3.x
Returns whether the mapper supports custom field text
Return value
bool
Overrides FieldMappingInterface::supportsCustomFields
2 methods override FieldMappingBase::supportsCustomFields()
- AddressFieldMapping::supportsCustomFields in src/
Plugin/ WebformContentCreator/ FieldMapping/ AddressFieldMapping.php - Returns whether the mapper supports custom field text
- EntityReferenceFieldMapping::supportsCustomFields in src/
Plugin/ WebformContentCreator/ FieldMapping/ EntityReferenceFieldMapping.php - Returns whether the mapper supports custom field text
File
- src/
Plugin/ FieldMappingBase.php, line 57
Class
- FieldMappingBase
- Base for a field mapping plugin.
Namespace
Drupal\webform_content_creator\PluginCode
public function supportsCustomFields() {
return TRUE;
}