You are here

function fontyourface_help in @font-your-face 8.3

Implements hook_help().

File

./fontyourface.module, line 44
Contains fontyourface.module..

Code

function fontyourface_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the fontyourface module.
    case 'help.page.fontyourface':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Web font management tools.') . '</p>';
      return $output;
    default:
  }
}