You are here

public function SalesforceMapping::getDrupalBundle 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::getDrupalBundle()
  2. 5.0.x modules/salesforce_mapping/src/Entity/SalesforceMapping.php \Drupal\salesforce_mapping\Entity\SalesforceMapping::getDrupalBundle()

Get the Drupal bundle name for this mapping, e.g. "article".

Return value

string The bundle.

Overrides SalesforceMappingInterface::getDrupalBundle

File

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

Class

SalesforceMapping
Defines a Salesforce Mapping configuration entity class.

Namespace

Drupal\salesforce_mapping\Entity

Code

public function getDrupalBundle() {
  return $this->drupal_bundle;
}