You are here

function CustomBreadcrumbsFeaturesCommonTestCase::getBreadcrumbTypes in Custom Breadcrumbs Features 7.2

Helper - List of paths keyed by crumb type.

2 calls to CustomBreadcrumbsFeaturesCommonTestCase::getBreadcrumbTypes()
CustomBreadcrumbsFeaturesCommonTestCase::createBreadcrumb in tests/common.test
Helper - Create a breadcrumb using the web UI.
CustomBreadcrumbsFeaturesCommonTestCase::deleteBreadcrumb in tests/common.test
Helper - Delete a breadcrumb using the web UI.

File

tests/common.test, line 84
Common helpers for custom_breadcrumbs_features tests.

Class

CustomBreadcrumbsFeaturesCommonTestCase
Common functions for Custom Breadcrumbs Features tests.

Code

function getBreadcrumbTypes() {
  return array(
    'custom_breadcrumb' => 'node',
    'custom_breadcrumbsapi' => 'module',
    'custom_breadcrumbs_paths' => 'path',
    'custom_breadcrumbs_panels' => 'panels',
    'custom_breadcrumbs_taxonomy_term' => 'taxonomy_term',
    'custom_breadcrumbs_taxonomy_vocabulary' => 'taxonomy_vocabulary',
    'custom_breadcrumbs_views' => 'views',
  );
}