You are here

function acquia_search_drush_help in Acquia Search 6.3

Implements hook_drush_help().

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

Parameters

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

Return value

string A string with the help text for your command.

File

drush/acquia_search.drush.inc, line 51
drush integration for acquia_search.

Code

function acquia_search_drush_help($section) {
  switch ($section) {
    case 'drush:solr-set-derived-key':
      return dt("Sets an environment to be active for Acquia search using a specific derived key.\n      You should use your Acquia Identifier and Network Key to set this value.");
  }
}