You are here

function salesforce_api_fieldmap_system_fields in Salesforce Suite 5.2

Same name and namespace in other branches
  1. 6.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()
3 calls to salesforce_api_fieldmap_system_fields()
DrupalSalesforce::retrieve in salesforce_api/salesforce.class.inc
Retrieves an object from Salesforce with standard fields and any data in fields defined in the fieldmap object.
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 388
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;
}