function jq_maphilight_drush_help in jQuery Map Hilight 7
Implements 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/
jq_maphilight.drush.inc, line 64 - drush integration for maphilight, based on colorbox.drush.inc.
Code
function jq_maphilight_drush_help($section) {
switch ($section) {
case 'drush:maphilight-plugin':
return dt("Downloads the Maphilight from plugins.jquery.com, default location is sites/all/libraries.");
}
}