You are here

function custom_breadcrumbsapi_cb_breadcrumb_info in Custom Breadcrumbs 6.2

Same name and namespace in other branches
  1. 7.2 custom_breadcrumbsapi/custom_breadcrumbsapi.module \custom_breadcrumbsapi_cb_breadcrumb_info()

Implements hook_cb_breadcrumb_info().

Return value

an array with elements: 'table' indicating the db_table to load the breadcrumb from, 'field' a unique field of the database table used to identify the breadcrumb, 'type' a string used for indicating the breadcrumb type on the admin list, 'name_constructor' a function which generates the breadcrumb name from the breadcrumb.

File

custom_breadcrumbsapi/custom_breadcrumbsapi.module, line 17

Code

function custom_breadcrumbsapi_cb_breadcrumb_info() {
  $breadcrumb_type_info = array();
  $breadcrumb_type_info['module'] = array(
    'table' => 'custom_breadcrumbsapi',
    'field' => 'module_page',
    'type' => 'module',
    'name_constructor' => '_custom_breadcrumbsapi_breadcrumb_name',
  );
  return $breadcrumb_type_info;
}