theme_breadcrumb

5 theme.inc theme_breadcrumb($breadcrumb)
6 theme.inc theme_breadcrumb($breadcrumb)
7 theme.inc theme_breadcrumb($variables)
8 theme.inc theme_breadcrumb($variables)

Return a themed breadcrumb trail.

Parameters

$breadcrumb: An array containing the breadcrumb links.

Return value

a string containing the breadcrumb output.

Related topics

1 theme call to theme_breadcrumb()

File

includes/theme.inc, line 486
The theme system, which controls the output of Drupal.

Code

function theme_breadcrumb($breadcrumb) {
  return '<div class="breadcrumb">' . implode($breadcrumb, ' &raquo; ') . '</div>';
}
Login or register to post comments