You are here

function metatag_google_scholar_help in Metatag Google Scholar 8

Same name and namespace in other branches
  1. 7 metatag_google_scholar.module \metatag_google_scholar_help()

Implements hook_help().

File

./metatag_google_scholar.module, line 13
Contains metatag_google_scholar.module.

Code

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

    // Main module help for the metatag_google_scholar module.
    case 'help.page.metatag_google_scholar':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Google Scholar tags') . '</p>';
      return $output;
    default:
  }
}