Repository URL to install this package:
|
Version:
1.6.2 ▾
|
novicell/content_hierarchy
/
modules
/
content_hierarchy_breadcrumb
/
content_hierarchy_breadcrumb.module
|
|---|
<?php
/**
* @file
* Contains merc_content_hierarchy_breadcrumb.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function content_hierarchy_breadcrumb_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the content_hierarchy_breadcrumb module.
case 'help.page.content_hierarchy_breadcrumb':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Creates breadcrumbs based on content hierarchy') . '</p>';
return $output;
default:
}
}