You are here

breadcrumb_manager.module in Breadcrumb Manager 8

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

File

breadcrumb_manager.module
View source
<?php

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

/**
 * Implements hook_help().
 */
function breadcrumb_manager_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the breadcrumb_manager module.
    case 'help.page.breadcrumb_manager':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('A fully autonomous breadcrumb management module, based on paths.') . '</p>';
      return $output;
    default:
  }
}

Functions

Namesort descending Description
breadcrumb_manager_help Implements hook_help().