function hook_path_breadcrumbs_view in Path Breadcrumbs 7.3
Act on a path_breadcrumbs object is preparing for view.
This hook is invoked before any token replacement.
Parameters
object $path_breadcrumbs: Object with path breadcrumb variant loaded from database.
array $contexts: Ctools contexts from current URL.
Return value
object $path_breadcrumbs
1 function implements hook_path_breadcrumbs_view()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- path_breadcrumbs_i18n_path_breadcrumbs_view in path_breadcrumbs_i18n/
path_breadcrumbs_i18n.module - Implements hook_path_breadcrumbs_view().
1 invocation of hook_path_breadcrumbs_view()
- _path_breadcrumbs_build_breadcrumbs in ./
path_breadcrumbs.module - Build breadcrumbs navigation from loaded path breadcrumb variant.
File
- ./
path_breadcrumbs.api.php, line 92 - Hooks provided by Path Breadcrumbs module.
Code
function hook_path_breadcrumbs_view(&$path_breadcrumbs, $contexts) {
// @todo Needs function body.
}