You are here

function context_breadcrumb_help in Context Breadcrumb 8

Implements hook_help().

File

./context_breadcrumb.module, line 13
Contains context_breadcrumb.module.

Code

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

    // Main module help for the context_breadcrumb module.
    case 'help.page.context_breadcrumb':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Breadcrumb with Context') . '</p>';
      return $output;
    default:
  }
}