Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / html_head_alter.twig
1 /**
2  * Implements hook_html_head_alter().
3  */
4 function {{ machine_name }}_html_head_alter(&$head_elements) {
5   foreach ($head_elements as $key => $element) {
6     if (isset($element['#attributes']['rel']) && $element['#attributes']['rel'] == 'canonical') {
7       // I want a custom canonical URL.
8       $head_elements[$key]['#attributes']['href'] = mymodule_canonical_url();
9     }
10   }
11 }