Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Routing/RedirectDestinationInterface.php \Drupal\Core\Routing\RedirectDestinationInterface::get()
  2. 9 core/lib/Drupal/Core/Routing/RedirectDestinationInterface.php \Drupal\Core\Routing\RedirectDestinationInterface::get()

Gets the destination as a path.

To convert to a URL suitable for \Symfony\Component\HttpFoundation\RedirectResponse::__construct() use

\Drupal\Core\Url::fromUserInput(\Drupal::destination()
  ->get())
  ->setAbsolute()
  ->toString();

Return value

string

File

core/lib/Drupal/Core/Routing/RedirectDestinationInterface.php, line 42

Class

RedirectDestinationInterface
Provides an interface for redirect destinations.

Namespace

Drupal\Core\Routing

Code

public function get();