You are here

function responsive_favicons_help in Responsive Favicons 8

Same name and namespace in other branches
  1. 7 responsive_favicons.module \responsive_favicons_help()

Implements hook_help().

File

./responsive_favicons.module, line 16
Contains responsive_favicons.module.

Code

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

    // Main module help for the responsive_favicons module.
    case 'help.page.responsive_favicons':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This module adds the favicons generated by http://realfavicongenerator.net/ to your site. The responsive name comes from the fact that many devices are catered for including iPhone, Android, iPad, other tablets and dektops.') . '</p>';
      return $output;
    default:
  }
}