rest_test_views.module in Drupal 8
Same filename and directory in other branches
Test hook implementations for the REST views test module.
File
core/modules/rest/tests/modules/rest_test_views/rest_test_views.moduleView source
<?php
/**
* @file
* Test hook implementations for the REST views test module.
*/
use Drupal\views\ViewExecutable;
/**
* Implements hook_views_post_execute().
*/
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);
}
}
}
Functions
Name | Description |
---|---|
rest_test_views_views_post_execute | Implements hook_views_post_execute(). |