breadcrumb_manager.module in Breadcrumb Manager 8
Same filename and directory in other branches
Contains breadcrumb_manager.module.
File
breadcrumb_manager.moduleView 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
Name | Description |
---|---|
breadcrumb_manager_help | Implements hook_help(). |