You are here

function disable_breadcrumbs_preprocess_page in Disable breadcrumbs 7

Implements hook_preprocess_page().

File

./disable_breadcrumbs.module, line 78
Disable breadcrumbs

Code

function disable_breadcrumbs_preprocess_page() {
  if (variable_get('disable_breadcrumbs_all', FALSE)) {
    _disable_breadcrumbs_disable();
    return;
  }

  // Check to see if current path is in disable breadcrumbs path settings.
  $disable_breadcrumbs_node_paths = variable_get('disable_breadcrumbs_node_paths', "");
  $current_path = drupal_get_path_alias($_GET['q']);
  $path_match = drupal_match_path($current_path, $disable_breadcrumbs_node_paths);
  if ($path_match) {
    _disable_breadcrumbs_disable();
  }
}