You are here

function chosen_drush_help in Chosen 7.2

Same name and namespace in other branches
  1. 7.3 drush/chosen.drush.inc \chosen_drush_help()

Implements hook_drush_help().

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

File

drush/chosen.drush.inc, line 49
Drush integration for chosen.

Code

function chosen_drush_help($section) {
  switch ($section) {
    case 'drush:chosen-plugin':
      return dt('Download and install the Chosen plugin from https://harvesthq.github.com/chosen, default location is sites/all/libraries.');
  }
}