function UrlGenerator::getRouteDebugMessage

Same name in other branches
  1. 9 core/lib/Drupal/Core/Routing/UrlGenerator.php \Drupal\Core\Routing\UrlGenerator::getRouteDebugMessage()
  2. 8.9.x core/lib/Drupal/Core/Routing/UrlGenerator.php \Drupal\Core\Routing\UrlGenerator::getRouteDebugMessage()

Gets either the route name or a string based on the route object.

Parameters

string|\Symfony\Component\Routing\Route $name: The route "name" which may also be an object or anything.

array $parameters: Route parameters array.

Return value

string Either the route name, or a string that uniquely identifies the route.

Deprecated

in drupal:10.1.0 and is removed from drupal:11.0.0. Use the route name instead.

See also

https://www.drupal.org/node/3172303

File

core/lib/Drupal/Core/Routing/UrlGenerator.php, line 509

Class

UrlGenerator
Generates URLs from route names and parameters.

Namespace

Drupal\Core\Routing

Code

public function getRouteDebugMessage($name, array $parameters = []) {
    @trigger_error(__METHOD__ . '() is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. Use the route name instead. See https://www.drupal.org/node/3172303', E_USER_DEPRECATED);
    if (is_scalar($name)) {
        return $name;
    }
    if ($name instanceof SymfonyRoute) {
        return 'Route with pattern ' . $name->getPath();
    }
    return serialize($name);
}

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