public function Test::setHeader in Drupal 9
Sets an HTTP header.
Parameters
string $name: The header name.
string $value: (optional) The header value ot set.
1 string reference to 'Test::setHeader'
- test_page_test.routing.yml in core/
modules/ system/ tests/ modules/ test_page_test/ test_page_test.routing.yml - core/modules/system/tests/modules/test_page_test/test_page_test.routing.yml
File
- core/
modules/ system/ tests/ modules/ test_page_test/ src/ Controller/ Test.php, line 107
Class
- Test
- Defines a test controller for page titles.
Namespace
Drupal\test_page_test\ControllerCode
public function setHeader($name, $value = NULL) {
$response = new Response();
$response->headers
->set($name, $value);
return $response;
}