function respondjs_drush_help in Respond.js 7
Same name and namespace in other branches
- 8 drush/respondjs.drush.inc \respondjs_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
- drush/
respondjs.drush.inc, line 47 - drush integration for respondjs.
Code
function respondjs_drush_help($section) {
switch ($section) {
case 'drush:rjs-download':
return dt("Downloads the required respond.js library from http://github.com/scottjehl/Respond. Takes an optional path argument.");
}
}