You are here

public static function WebformElements::isAllowed in Salesforce Suite 5.0.x

Same name and namespace in other branches
  1. 8.4 modules/salesforce_webform/src/Plugin/SalesforceMappingField/WebformElements.php \Drupal\salesforce_webform\Plugin\SalesforceMappingField\WebformElements::isAllowed()
  2. 8.3 modules/salesforce_webform/src/Plugin/SalesforceMappingField/WebformElements.php \Drupal\salesforce_webform\Plugin\SalesforceMappingField\WebformElements::isAllowed()

Determine whether this plugin is allowed for a given mapping.

Given a SF Mapping, return TRUE or FALSE whether this field plugin can be added via UI. Not used for validation or any other constraints. This works like a soft dependency.

Parameters

\Drupal\salesforce_mapping\Entity\SalesforceMappingInterface $mapping: The mapping.

Return value

bool TRUE if the field plugin can be added to this mapping.

Overrides SalesforceMappingFieldPluginBase::isAllowed

See also

\Drupal\salesforce_mapping\Plugin\SalesforceMappingField\Broken

File

modules/salesforce_webform/src/Plugin/SalesforceMappingField/WebformElements.php, line 24

Class

WebformElements
Adapter for Webform elements.

Namespace

Drupal\salesforce_webform\Plugin\SalesforceMappingField

Code

public static function isAllowed(SalesforceMappingInterface $mapping) {
  return $mapping
    ->getDrupalEntityType() == 'webform_submission';
}