function views_quicksand_drush_help in Views Quicksand 7
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
- ./
views_quicksand.drush.inc, line 57 - drush integration for quicksand.
Code
function views_quicksand_drush_help($section) {
switch ($section) {
case 'drush:quicksand-plugin':
return dt("Downloads the Quicksand plugin from github.com, default location is sites/all/libraries.");
}
}