function css3pie_drush_help in css3pie 7.2
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
- ./
css3pie.drush.inc, line 39 - css3pie drush integration for lib downloading
Code
function css3pie_drush_help($section) {
switch ($section) {
case 'drush:css3pie-download':
return dt("Downloads the css3pie library, default location is sites/all/libraries.");
}
}