504a2e7910a1c4bf937d4709935d87001becf781
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / hal_type_uri_alter.twig
1 /**
2  * Implements hook_hal_type_uri_alter().
3  */
4 function {{ machine_name }}_hal_type_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 }