You are here

function fontawesome_drush_help in Font Awesome Icons 7.3

Same name and namespace in other branches
  1. 7 drush/fontawesome.drush.inc \fontawesome_drush_help()
  2. 7.2 drush/fontawesome.drush.inc \fontawesome_drush_help()

Implements hook_drush_help().

This function is called whenever a drush user calls 'drush help <name-of-your-command>'

File

drush/fontawesome.drush.inc, line 40
Drush integration for fontawesome.

Code

function fontawesome_drush_help($section) {
  switch ($section) {
    case 'drush:fa-download':
      return dt("Downloads the required Fontawesome library from https://github.com/FortAwesome/Font-Awesome.");
  }
}