You are here

function custom_breadcrumbs_content_extra_fields in Custom Breadcrumbs 6.2

Implements hook_content_extra_fields().

File

./custom_breadcrumbs.module, line 267
Provide custom breadcrumbs for node-type pages and base functionality for submodules to add custom breadcrumbs for other types of pages.

Code

function custom_breadcrumbs_content_extra_fields($type_name) {
  $fields['custom_breadcrumbs'] = array(
    'label' => t('Custom Breadcrumbs'),
    'description' => t('Custom Breadcrumbs module form.'),
    'weight' => CUSTOM_BREADCRUMBS_TYPE_FIELDS_WEIGHT,
  );
  return $fields;
}