You are here

function salesforce_api_fieldmap_system_fields in Salesforce Suite 7.2

Same name and namespace in other branches
  1. 5.2 salesforce_api/salesforce_api.module \salesforce_api_fieldmap_system_fields()
  2. 6.2 salesforce_api/salesforce_api.module \salesforce_api_fieldmap_system_fields()
  3. 7 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
Displays the Salesforce synchronization form.

File

salesforce_api/salesforce_api.module, line 662
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;
}