You are here

function sf_entity_form_salesforce_api_settings_form_alter in Salesforce Suite 7

Implements hook_form_salesforce_api_settings_form_alter().

File

sf_entity/sf_entity.module, line 86
Integrates fieldable entities with the Salesforce API.

Code

function sf_entity_form_salesforce_api_settings_form_alter(&$form, $form_state) {
  return FALSE;

  // Ignore these placeholders until there's actually something there.
  $form['sf_node'] = array(
    '#type' => 'fieldset',
    '#title' => t('Node integration'),
    '#description' => t('Placeholder for any node integration settings.'),
    '#collapsible' => TRUE,
    '#collapsed' => TRUE,
    '#weight' => -1,
  );
  $form['sf_user'] = array(
    '#type' => 'fieldset',
    '#title' => t('User integration'),
    '#description' => t('Placeholder for any user integration settings.'),
    '#collapsible' => TRUE,
    '#collapsed' => TRUE,
    '#weight' => -1,
  );
}