function rest_test_views_views_post_execute

Same name and namespace in other branches
  1. 8.9.x core/modules/rest/tests/modules/rest_test_views/rest_test_views.module \rest_test_views_views_post_execute()
  2. 10 core/modules/rest/tests/modules/rest_test_views/rest_test_views.module \rest_test_views_views_post_execute()
  3. 11.x core/modules/rest/tests/modules/rest_test_views/rest_test_views.module \rest_test_views_views_post_execute()

Implements hook_views_post_execute().

File

core/modules/rest/tests/modules/rest_test_views/rest_test_views.module, line 13

Code

function rest_test_views_views_post_execute(ViewExecutable $view) {
    // Attach a custom header to the test_data_export view.
    if ($view->id() === 'test_serializer_display_entity') {
        if ($value = \Drupal::state()->get('rest_test_views_set_header', FALSE)) {
            $view->getResponse()->headers
                ->set('Custom-Header', $value);
        }
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.