You are here

public function SalesforceMappingFieldPluginBase::get in Salesforce Suite 8.3

Same name and namespace in other branches
  1. 8.4 modules/salesforce_mapping/src/SalesforceMappingFieldPluginBase.php \Drupal\salesforce_mapping\SalesforceMappingFieldPluginBase::get()
  2. 5.0.x modules/salesforce_mapping/src/SalesforceMappingFieldPluginBase.php \Drupal\salesforce_mapping\SalesforceMappingFieldPluginBase::get()

Used for returning values by key.

Key of the value.

Return value

string Value of the key.

Overrides SalesforceMappingFieldPluginInterface::get

1 call to SalesforceMappingFieldPluginBase::get()
SalesforceMappingFieldPluginBase::label in modules/salesforce_mapping/src/SalesforceMappingFieldPluginBase.php
Returns label of the mapping field plugin.

File

modules/salesforce_mapping/src/SalesforceMappingFieldPluginBase.php, line 468

Class

SalesforceMappingFieldPluginBase
Defines a base Salesforce Mapping Field Plugin implementation.

Namespace

Drupal\salesforce_mapping

Code

public function get($key) {
  return $this
    ->config($key);
}