You are here

function hook_fieldmap_objects_alter in Salesforce Suite 6.2

Same name and namespace in other branches
  1. 7 hooks.php \hook_fieldmap_objects_alter()
  2. 7.2 salesforce_api.api.php \hook_fieldmap_objects_alter()

Modify fieldmap object definitions.

Parameters

$objects: The fieldmap object definition as defined by hook_fieldmap_objects implementations.

1 function implements hook_fieldmap_objects_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

sf_contrib_fieldmap_objects_alter in sf_contrib/sf_contrib.module
Implementation of hook_fieldmap_objects().
1 invocation of hook_fieldmap_objects_alter()
salesforce_api_fieldmap_objects_load in salesforce_api/salesforce_api.module
Returns all or a subset of the objects defined via hook_sf_fieldmap().

File

./hooks.php, line 123
These are the hooks that are invoked by the Salesforce core.

Code

function hook_fieldmap_objects_alter(&$objects) {
  $objects['node_page']['fields']['status']['label'] = "Published Status";
}