You are here

public function LinkFieldMapping::getSupportedWebformFields in Webform Content Creator 3.x

Parameters

$webform_id:

Return value

mixed

Overrides FieldMappingBase::getSupportedWebformFields

File

src/Plugin/WebformContentCreator/FieldMapping/LinkFieldMapping.php, line 24

Class

LinkFieldMapping
Provides link field mapping.

Namespace

Drupal\webform_content_creator\Plugin\WebformContentCreator\FieldMapping

Code

public function getSupportedWebformFields($webform_id) {
  $supported_types = [
    "url",
  ];
  return $this
    ->filterWebformFields($webform_id, $supported_types);
}