7c8c472bc335a0da1e8bbbcfe6949b57a1593688
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / rest_type_uri_alter.twig
1 /**
2  * Implements hook_rest_type_uri_alter().
3  */
4 function {{ machine_name }}_rest_type_uri_alter(&$uri, $context = []) {
5   if ($context['mymodule'] == TRUE) {
6     $base = \Drupal::config('serialization.settings')->get('link_domain');
7     $uri = str_replace($base, 'http://mymodule.domain', $uri);
8   }
9 }