public function Url::getRouteName in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Url.php \Drupal\Core\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 562
Class
- Url
- Defines an object that holds information about a URL.
Namespace
Drupal\CoreCode
public function getRouteName() {
if ($this->unrouted) {
throw new \UnexpectedValueException('External URLs do not have an internal route name.');
}
return $this->routeName;
}