You are here

public static function PropertiesExtended::isAllowed in Salesforce Suite 8.3

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_mapping/src/Plugin/SalesforceMappingField/PropertiesExtended.php, line 110

Class

PropertiesExtended
Adapter for entity properties and fields.

Namespace

Drupal\salesforce_mapping\Plugin\SalesforceMappingField

Code

public static function isAllowed(SalesforceMappingInterface $mapping) {
  return \Drupal::service('module_handler')
    ->moduleExists('typed_data');
}