public RouteProcessorCsrf::renderPlaceholderCsrfToken($path)
#lazy_builder callback; gets a CSRF token for the given path.
Parameters
string $path: The path to get a CSRF token for.
Return value
array A renderable array representing the CSRF token.
File
- core/lib/Drupal/Core/Access/RouteProcessorCsrf.php, line 71
Class
- RouteProcessorCsrf
- Processes the outbound route to handle the CSRF token.
Namespace
Drupal\Core\Access
Code
public function renderPlaceholderCsrfToken($path) {
return [
'#markup' => $this->csrfToken->get($path),
// Tokens are per session.
'#cache' => [
'contexts' => [
'session',
],
],
];
}
Please login to continue.