function disable_breadcrumbs_help in Disable breadcrumbs 7
Implements hook_help().
File
- ./
disable_breadcrumbs.module, line 13 - Disable breadcrumbs
Code
function disable_breadcrumbs_help($path, $arg) {
switch ($path) {
case 'admin/help#disable_breadcrumbs':
return '<p>' . t('The disable breadcrumbs module allows you to disable (remove) breadcrumbs on a per node,
per content type, or per path basis. For any content types that have been enabled on the disable breadcrumbs
settings page a breadcrumb option will appear when editing nodes. Path settings work much the same as the
block visibility system; So breadcrumbs can be disabled by path (e.g. content/123) or using wildcards to
match multiple paths or site sections (e.g. content/* or content/area/*).') . '</p>';
}
}