You are here

function fontawesome_drush_help in Font Awesome Icons 7.2

Same name and namespace in other branches
  1. 7.3 drush/fontawesome.drush.inc \fontawesome_drush_help()
  2. 7 drush/fontawesome.drush.inc \fontawesome_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/fontawesome.drush.inc, line 49
drush integration for fontawesome.

Code

function fontawesome_drush_help($section) {
  switch ($section) {
    case 'drush:fa-download':
      return dt("Downloads the required Fontawesome library from " . "http://fortawesome.github.io.");
  }
}