template_preprocess_breadcrumb(&$variables)
Prepares variables for breadcrumb templates.
Default template: breadcrumb.html.twig.
Parameters
array $variables: An associative array containing:
- links: A list of \Drupal\Core\Link objects which should be rendered.
File
- core/includes/theme.inc, line 1693
- The theme system, which controls the output of Drupal.
Code
1 2 3 4 5 6 7 | function template_preprocess_breadcrumb(& $variables ) { $variables [ 'breadcrumb' ] = array (); /** @var \Drupal\Core\Link $link */ foreach ( $variables [ 'links' ] as $key => $link ) { $variables [ 'breadcrumb' ][ $key ] = array ( 'text' => $link -> getText (), 'url' => $link ->getUrl()->toString()); } } |
Please login to continue.