You are here

function custom_breadcrumbs_paths_preprocess_page in Custom Breadcrumbs 7.2

Same name and namespace in other branches
  1. 6.2 custom_breadcrumbs_paths/custom_breadcrumbs_paths.module \custom_breadcrumbs_paths_preprocess_page()

Implements hook_preprocess_page().

File

custom_breadcrumbs_paths/custom_breadcrumbs_paths.module, line 77

Code

function custom_breadcrumbs_paths_preprocess_page(&$variables) {
  if (!custom_breadcrumbs_exclude_path()) {
    $objs = isset($variables) && is_array($variables) ? $variables : array();

    // Check for a match to provide custom breadcrumbs on module callback pages.
    if (_custom_breadcrumbs_paths_set_breadcrumb($objs)) {
      $variables['breadcrumb'] = theme('breadcrumb', array(
        'breadcrumb' => drupal_get_breadcrumb(),
      ));
    }
  }
}