function superfish_drush_help in Superfish 6
Same name and namespace in other branches
- 7 superfish.drush.inc \superfish_drush_help()
Implementation of 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
- ./
superfish.drush.inc, line 57 - Drush integration for Superfish.
Code
function superfish_drush_help($section) {
switch ($section) {
case 'drush:superfish-plugin':
return dt("Downloads the Superfish plugin, default location is sites/all/libraries.");
}
}