You are here

function salesforce_api_fieldmap_system_fields in Salesforce Suite 6.2

Same name and namespace in other branches
  1. 5.2 salesforce_api/salesforce_api.module \salesforce_api_fieldmap_system_fields()
  2. 7 salesforce_api/salesforce_api.module \salesforce_api_fieldmap_system_fields()
  3. 7.2 salesforce_api/salesforce_api.module \salesforce_api_fieldmap_system_fields()

Returns an array of system fields that are retrievable from Salesforce.

2 calls to salesforce_api_fieldmap_system_fields()
sf_node_salesforce_form in sf_node/sf_node.module
sf_user_salesforce_form in sf_user/sf_user.module

File

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