You are here

function breadcrumbs_by_path_help in Breadcrumbs by path 7

Implements hook_help().

File

./breadcrumbs_by_path.module, line 11
Creates a breadcrumb trail based on the current aliased path.

Code

function breadcrumbs_by_path_help($path, $arg) {
  switch ($path) {
    case 'admin/help#breadcrumbs_by_path':
      return t("This module alters the page's breadcrumb trail based on the URL by examining each level in the URL and creating a breadcrumb link for each valid page.");
  }
}