You are here

metatag_google_scholar.module in Metatag Google Scholar 8

Same filename and directory in other branches
  1. 7 metatag_google_scholar.module

File

metatag_google_scholar.module
View source
<?php

/**
 * @file
 * Contains metatag_google_scholar.module.
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
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:
  }
}

Functions

Namesort descending Description
metatag_google_scholar_help Implements hook_help().