| 5 theme.inc | theme_breadcrumb($breadcrumb) |
| 6 theme.inc | theme_breadcrumb( |
| 7 theme.inc | theme_breadcrumb($variables) |
| 8 theme.inc | theme_breadcrumb($variables) |
Returns HTML for a breadcrumb trail.
Parameters
$variables: An associative array containing:
- breadcrumb: An array containing the breadcrumb links.
Related topics
3 theme calls to theme_breadcrumb()
File
- core/
includes/ theme.inc, line 1820 - The theme system, which controls the output of Drupal.
Code
function theme_breadcrumb($variables) {
$breadcrumb = $variables['breadcrumb'];
$output = '';
if (!empty($breadcrumb)) {
$output .= '<nav role="navigation" class="breadcrumb">';
// Provide a navigational heading to give context for breadcrumb links to
// screen-reader users. Make the heading invisible with .element-invisible.
$output .= '<h2 class="element-invisible">' . t('You are here') . '</h2>';
$output .= '<ol><li>' . implode(' » </li><li>', $breadcrumb) . '</li></ol>';
$output .= '</nav>';
}
return $output;
}
Login or register to post comments