3f6e3a45403b43b9ce4a907f91a3fa6d254d0d60
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / system_breadcrumb_alter.twig
1 /**
2  * Implements hook_system_breadcrumb_alter().
3  */
4 function {{ machine_name }}_system_breadcrumb_alter(\Drupal\Core\Breadcrumb\Breadcrumb &$breadcrumb, \Drupal\Core\Routing\RouteMatchInterface $route_match, array $context) {
5   // Add an item to the end of the breadcrumb.
6   $breadcrumb->addLink(\Drupal\Core\Link::createFromRoute(t('Text'), 'example_route_name'));
7 }