You are here

public static function EasyBreadcrumbConstants::defaultExcludedPaths in Easy Breadcrumb 7.2

Same name and namespace in other branches
  1. 7 includes/EasyBreadcrumbConstants.inc \EasyBreadcrumbConstants::defaultExcludedPaths()

Default list of excluded paths.

Return value

array Default list of ignored paths.

3 calls to EasyBreadcrumbConstants::defaultExcludedPaths()
_easy_breadcrumb_build_items in ./easy_breadcrumb.module
Helper function to generate breadcrumb items.
_easy_breadcrumb_check_excluded_path in ./easy_breadcrumb.module
Verifies if the given path should be exclude from the breadcrumb.
_easy_breadcrumb_general_settings_form in includes/easy_breadcrumb.admin.inc
General configuration form.

File

includes/EasyBreadcrumbConstants.inc, line 128
Module's contants.

Class

EasyBreadcrumbConstants
EasyBreadcrumb module's contants.

Code

public static function defaultExcludedPaths() {
  static $default_excluded_paths = array(
    'search',
    'search/node',
  );
  return $default_excluded_paths;
}