protected RedirectDestinationTrait::getDestinationArray()
Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
Return value
array An associative array containing the key:
- destination: The value of the current request's 'destination' query parameter, if present. This can be either a relative or absolute URL. However, for security, redirection to external URLs is not performed. If the query parameter isn't present, then the URL of the current request is returned.
See also
\Drupal\Core\Routing\RedirectDestinationInterface::getAsArray()
File
- core/lib/Drupal/Core/Routing/RedirectDestinationTrait.php, line 35
Class
- RedirectDestinationTrait
- Wrapper methods for the Redirect Destination.
Namespace
Drupal\Core\Routing
Code
protected function getDestinationArray() { return $this->getRedirectDestination()->getAsArray(); }
Please login to continue.