function speedy_drush_help in Speedy 7
Implements hook_drush_help().
File
- ./
speedy.drush.inc, line 39 - Drush integration for the speedy module.
Code
function speedy_drush_help($section) {
switch ($section) {
case 'drush:speedy-min':
return dt("Look for unminified core JavaScript files and generate minified files that can be replaced via hook_library_alter().");
case 'drush:speedy-min-module':
return dt("Look for unminified JavaScript files in a particular module directory and minify them.");
}
}