You are here

public function SalesforceMappingFormBase::__construct in Salesforce Suite 8.3

SalesforceMappingFormBase constructor.

Parameters

\Drupal\salesforce_mapping\SalesforceMappingFieldPluginManager $mappingFieldPluginManager: Mapping plugin manager.

\Drupal\salesforce\Rest\RestClientInterface $client: Rest client.

\Drupal\salesforce_mapping\SalesforceMappableEntityTypesInterface $mappableEntityTypes: Mappable types.

File

modules/salesforce_mapping/src/Form/SalesforceMappingFormBase.php, line 56

Class

SalesforceMappingFormBase
Salesforce Mapping Form base.

Namespace

Drupal\salesforce_mapping\Form

Code

public function __construct(SalesforceMappingFieldPluginManager $mappingFieldPluginManager, RestClientInterface $client, SalesforceMappableEntityTypesInterface $mappableEntityTypes) {
  $this->mappingFieldPluginManager = $mappingFieldPluginManager;
  $this->client = $client;
  $this->mappableEntityTypes = $mappableEntityTypes;
}