You are here

function rest_test_rest_type_uri_alter in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/rest/tests/modules/rest_test/rest_test.module \rest_test_rest_type_uri_alter()

Implements hook_rest_type_uri_alter().

File

core/modules/rest/tests/modules/rest_test/rest_test.module, line 11
Contains hook implementations for testing REST module.

Code

function rest_test_rest_type_uri_alter(&$uri, $context = array()) {
  if (!empty($context['rest_test'])) {
    $uri = 'rest_test_type';
  }
}