You are here

function panels_breadcrumbs_get_panelizer_breadcrumb_conf in Panels Breadcrumbs 7.2

Returns the breadcrumb configuration for the panelized entity.

2 calls to panels_breadcrumbs_get_panelizer_breadcrumb_conf()
panels_breadcrumbs_page_breadcrumb_content_type_render in ./panels_breadcrumbs.module
Render callback override of 'page_breadcrumb' ctools content-type.
panels_breadcrumbs_panelizer_pre_render_alter in ./panels_breadcrumbs.module
Implements hook_panelizer_pre_render_alter().

File

./panels_breadcrumbs.module, line 563
Main file for panels breadcrumbs module.

Code

function panels_breadcrumbs_get_panelizer_breadcrumb_conf($conf = FALSE) {
  $panelizer_conf =& drupal_static(__FUNCTION__);
  if ($conf) {
    $panelizer_conf = $conf;
  }
  return $panelizer_conf;
}