function Url::getRouteName
Returns the route name.
Return value
string
Throws
\UnexpectedValueException. If this is a URI with no corresponding route.
3 calls to Url::getRouteName()
- Url::access in core/lib/ Drupal/ Core/ Url.php 
- Checks this Url object against applicable access check services.
- Url::getInternalPath in core/lib/ Drupal/ Core/ Url.php 
- Returns the internal path (system path) for this route.
- Url::toString in core/lib/ Drupal/ Core/ Url.php 
- Generates the string URL representation for this Url object.
File
- 
              core/lib/ Drupal/ Core/ Url.php, line 565 
Class
- Url
- Defines an object that holds information about a URL.
Namespace
Drupal\CoreCode
public function getRouteName() {
  if ($this->unrouted) {
    throw new \UnexpectedValueException($this->getUri() . ' has no corresponding route.');
  }
  return $this->routeName;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
