You are here

function custom_breadcrumbs_taxonomy_term_features_export in Custom Breadcrumbs Features 7.2

Implements hook_features_export(). [component hook]

File

includes/custom_breadcrumbs_features.features.inc, line 165
Code to provide custom_breadcrumbs with features integration.

Code

function custom_breadcrumbs_taxonomy_term_features_export($data, &$export, $module_name) {

  // Looks like taxonomy terms cannot be featurized, so we do not set them as a dependency.
  return custom_breadcrumbs_features_generic_export($data, $export, $module_name, 'custom_breadcrumbs_taxonomy_term');
}