You are here

function fontyourface_drush_help in @font-your-face 7.2

Implements hook_drush_help().

File

drush/fontyourface.drush.inc, line 11
Drush integration for @font-your-face.

Code

function fontyourface_drush_help($section) {
  switch ($section) {
    case 'drush:fyf-status':
      $help = dt('Displays @font-your-face status');
      return $help;
    case 'drush:fyf-import':
      $help = dt('Imports @font-your-face fonts');
      return $help;
    case 'meta:fontyourface:title':
      $help = dt('@font-your-face commands');
      return $help;
  }
}