You are here

function sf_import_help in Salesforce Suite 7.2

Same name and namespace in other branches
  1. 6.2 sf_import/sf_import.module \sf_import_help()

Implements hook_help().

File

sf_import/sf_import.module, line 44

Code

function sf_import_help($path, $arg) {
  switch ($path) {
    case 'admin/config/salesforce/import':
      return '<p>' . t('Select the fieldmaps you would like to use for regular
      imports of data from Salesforce to Drupal. <strong>This feature requires
      a properly configured cron job.</strong> Once fieldmaps have been selected,
       additional information regarding pending imports is available, along with
       the ability to manually trigger imports. <br />You can also run a one-time
        batch import of data from Salesforce to Drupal by visiting the "Batch Import" page.') . '</p>';
  }
}