You are here

function apigee_api_catalog_help in Apigee API Catalog 8.2

Same name and namespace in other branches
  1. 8 apigee_api_catalog.module \apigee_api_catalog_help()

Implements hook_help().

File

./apigee_api_catalog.module, line 35
Copyright 2019 Google Inc.

Code

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

    // Main module help for the apigee_api_catalog module.
    case 'help.page.apigee_api_catalog':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Display documentation of your APIs to your developers using OpenAPI documentation.') . '</p>';
      return $output;
    default:
  }
}