public function Constant::value in Salesforce Suite 8.3
Same name and namespace in other branches
- 8.4 modules/salesforce_mapping/src/Plugin/SalesforceMappingField/Constant.php \Drupal\salesforce_mapping\Plugin\SalesforceMappingField\Constant::value()
- 5.0.x modules/salesforce_mapping/src/Plugin/SalesforceMappingField/Constant.php \Drupal\salesforce_mapping\Plugin\SalesforceMappingField\Constant::value()
Given a Drupal entity, return the outbound value.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity being mapped.
\Drupal\salesforce_mapping\Entity\SalesforceMappingInterface $mapping: The parent SalesforceMapping to which this plugin config belongs.
Overrides SalesforceMappingFieldPluginInterface::value
File
- modules/
salesforce_mapping/ src/ Plugin/ SalesforceMappingField/ Constant.php, line 47
Class
- Constant
- Adapter for entity Constant and fields.
Namespace
Drupal\salesforce_mapping\Plugin\SalesforceMappingFieldCode
public function value(EntityInterface $entity, SalesforceMappingInterface $mapping) {
return $this
->config('drupal_field_value');
}