You are here

function sf_notifications_drush_help in Salesforce Suite 7.2

Implements hook_drush_help().

This function is called whenever a drush user calls 'drush help <name-of-your-command>'

Parameters

A string with the help section (prepend with 'drush:'):

Return value

A string with the help text for your command.

File

sf_notifications/sf_notifications.drush.inc, line 48
drush integration for apachesolr.

Code

function sf_notifications_drush_help($section) {
  switch ($section) {
    case 'drush:sf-process-notifications':
      return dt("Processes the sf_notifications queue to create Drupal objects from queued inbound Salesforce notifications.");
  }
}