You are here

public function SalesforceMappingFieldPluginBase::label in Salesforce Suite 8.4

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

Returns label of the mapping field plugin.

Return value

string The label of the mapping field plugin.

Overrides SalesforceMappingFieldPluginInterface::label

File

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

Class

SalesforceMappingFieldPluginBase
Defines a base Salesforce Mapping Field Plugin implementation.

Namespace

Drupal\salesforce_mapping

Code

public function label() {
  return $this
    ->get('label');
}