W3cubDocs

/Drupal 8

public function Url::getUri

public Url::getUri()

Returns the URI value for this Url object.

Only to be used if self::$unrouted is TRUE.

Return value

string A URI not connected to a route. May be an external URL.

Throws

\UnexpectedValueException Thrown when the URI was requested for a routed URL.

File

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

Class

Url
Defines an object that holds information about a URL.

Namespace

Drupal\Core

Code

public function getUri() {
  if (!$this->unrouted) {
    throw new \UnexpectedValueException('This URL has a Drupal route, so the canonical form is not a URI.');
  }

  return $this->uri;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Url.php/function/Url::getUri/8.1.x