public function Url::getInternalPath

public Url::getInternalPath()

Returns the internal path (system path) for this route.

This path will not include any prefixes, fragments, or query strings.

Return value

string The internal path for this route.

Throws

\UnexpectedValueException. If this is a URI with no corresponding system path.

File

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

Class

Url
Defines an object that holds information about a URL.

Namespace

Drupal\Core

Code

public function getInternalPath() {
  if ($this->unrouted) {
    throw new \UnexpectedValueException('Unrouted URIs do not have internal representations.');
  }

  if (!isset($this->internalPath)) {
    $this->internalPath = $this->urlGenerator()->getPathFromRoute($this->getRouteName(), $this->getRouteParameters());
  }
  return $this->internalPath;
}

© 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::getInternalPath/8.1.x