function salesforce_api_fieldmap_system_fields in Salesforce Suite 7
Same name and namespace in other branches
- 5.2 salesforce_api/salesforce_api.module \salesforce_api_fieldmap_system_fields()
- 6.2 salesforce_api/salesforce_api.module \salesforce_api_fieldmap_system_fields()
- 7.2 salesforce_api/salesforce_api.module \salesforce_api_fieldmap_system_fields()
Returns an array of system fields that are retrievable from Salesforce.
1 call to salesforce_api_fieldmap_system_fields()
- sf_entity_salesforce_form in sf_entity/
sf_entity.module
File
- salesforce_api/
salesforce_api.module, line 339 - Defines an API that enables modules to interact with the Salesforce server.
Code
function salesforce_api_fieldmap_system_fields() {
$fields = array(
'Id' => array(
'label' => t('Salesforce ID'),
),
'IsDeleted' => array(
'label' => t('Is the object deleted?'),
),
'CreatedById' => array(
'label' => t('User ID of the creator'),
),
'CreatedDate' => array(
'label' => t('Creation date and time'),
),
'LastModifiedById' => array(
'label' => t('User ID of the last modifier'),
),
'LastModifiedDate' => array(
'label' => t('Last user modification date and time'),
),
'SystemModstamp' => array(
'label' => t('Last user or system modification date and time'),
),
);
return $fields;
}