Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / link_alter.twig
1 /**
2  * Implements hook_link_alter().
3  */
4 function {{ machine_name }}_link_alter(&$variables) {
5   // Add a warning to the end of route links to the admin section.
6   if (isset($variables['route_name']) && strpos($variables['route_name'], 'admin') !== FALSE) {
7     $variables['text'] = t('@text (Warning!)', ['@text' => $variables['text']]);
8   }
9 }