function Url::setRouteParameters

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setRouteParameters()
  2. 10 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setRouteParameters()
  3. 11.x core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setRouteParameters()

Sets the route parameters.

Parameters

array $parameters: The array of parameters.

Return value

$this

Throws

\UnexpectedValueException. If this is a URI with no corresponding route.

File

core/lib/Drupal/Core/Url.php, line 597

Class

Url
Defines an object that holds information about a URL.

Namespace

Drupal\Core

Code

public function setRouteParameters($parameters) {
    if ($this->unrouted) {
        throw new \UnexpectedValueException('External URLs do not have route parameters.');
    }
    $this->routeParameters = $parameters;
    return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.