You are here

function schema_metatag_help in Schema.org Metatag 8

Same name and namespace in other branches
  1. 8.2 schema_metatag.module \schema_metatag_help()

Implements hook_help().

File

./schema_metatag.module, line 13
Contains schema_metatag.module.

Code

function schema_metatag_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.schema_metatag':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This module adds Schema.org structured data to web pages as JSON-LD. Configure structured data elements using the metatags module.') . '</p>';
      return $output;
    default:
  }
}