get('link_domain'); $uri = str_replace($base, 'http://mymodule.domain', $uri); } } /** * Alter the REST relation URI. * * @deprecated in Drupal 8.3.x and will be removed before Drupal 9.0.0. Use * hook_serialization_relation_uri_alter() instead. This exists solely for BC. * * Modules may wish to alter the relation URI generated for a resource based on * the context of the serializer/normalizer operation. * * @param string $uri * The URI to alter. * @param array $context * The context from the serializer/normalizer operation. * * @see \Symfony\Component\Serializer\SerializerInterface::serialize() * @see \Symfony\Component\Serializer\SerializerInterface::deserialize() * @see \Symfony\Component\Serializer\NormalizerInterface::normalize() * @see \Symfony\Component\Serializer\DenormalizerInterface::denormalize() */ function hook_rest_relation_uri_alter(&$uri, $context = []) { if ($context['mymodule'] == TRUE) { $base = \Drupal::config('serialization.settings')->get('link_domain'); $uri = str_replace($base, 'http://mymodule.domain', $uri); } } /** * @} End of "addtogroup hooks". */