ctools_page_breadcrumb_content_type_render
Drupal 7 ctools_page_breadcrumb_content_type_render($subtype, $conf, $panel_args)
Output function for the 'page_breadcrumb' content type.
Outputs the breadcrumb for the current page.
File
- sites/
all/ modules/ ctools/ plugins/ content_types/ page/ page_breadcrumb.inc, line 27 - Plugin to handle the 'page_breadcrumb' content type which allows the breadcrumb trail of the current page to be embedded into a panel.
Code
function ctools_page_breadcrumb_content_type_render($subtype, $conf, $panel_args) {
$block = new stdClass();
$block->content = theme('breadcrumb', array('breadcrumb' => drupal_get_breadcrumb()));
return $block;
}

