function taxonomy_menu_help in Taxonomy menu 8.3
Same name and namespace in other branches
- 8 taxonomy_menu.module \taxonomy_menu_help()
- 5 taxonomy_menu.module \taxonomy_menu_help()
- 7.2 taxonomy_menu.module \taxonomy_menu_help()
- 7 taxonomy_menu.module \taxonomy_menu_help()
Implements hook_menu_help().
File
- ./
taxonomy_menu.module, line 14 - Contains taxonomy_menu.module.
Code
function taxonomy_menu_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.taxonomy_menu':
return t('<p>The Taxonomy Menu module transforms your taxonomy vocabularies into menus.</p>
<p>See the <a href=":project_page">project page on Drupal.org</a> for more details.</p>', [
':project_page' => 'https://www.drupal.org/project/taxonomy_menu',
]);
}
}