Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / hal_relation_uri_alter.twig
1 /**
2  * Implements hook_hal_relation_uri_alter().
3  */
4 function {{ machine_name }}_hal_relation_uri_alter(&$uri, $context = []) {
5   if ($context['mymodule'] == TRUE) {
6     $base = \Drupal::config('hal.settings')->get('link_domain');
7     $uri = str_replace($base, 'http://mymodule.domain', $uri);
8   }
9 }