You are here

public function SalesforceMapping::getDrupalEntityType in Salesforce Suite 8.3

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

Get the Drupal entity type name for this mapping, e.g. "node".

Return value

string The entity type id.

Overrides SalesforceMappingInterface::getDrupalEntityType

File

modules/salesforce_mapping/src/Entity/SalesforceMapping.php, line 401

Class

SalesforceMapping
Defines a Salesforce Mapping configuration entity class.

Namespace

Drupal\salesforce_mapping\Entity

Code

public function getDrupalEntityType() {
  return $this->drupal_entity_type;
}