You are here

public function SalesforceMapping::getMappedRecordTypes in Salesforce Suite 7.3

1 call to SalesforceMapping::getMappedRecordTypes()
SalesforceMapping::getMappedFields in modules/salesforce_mapping/includes/salesforce_mapping.entity.inc
Return an array of Salesforce Field Names included in this mapping.

File

modules/salesforce_mapping/includes/salesforce_mapping.entity.inc, line 76
Contains SalesforceMapping.

Class

SalesforceMapping
Entity class for Salesforce Mappings

Code

public function getMappedRecordTypes() {
  return $this->salesforce_record_type_default == SALESFORCE_MAPPING_DEFAULT_RECORD_TYPE ? array() : array_filter($this->salesforce_record_types_allowed);
}