function RouteProviderLazyBuilder::getRoutesCount
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Routing/RouteProviderLazyBuilder.php \Drupal\Core\Routing\RouteProviderLazyBuilder::getRoutesCount()
Gets the total count of routes provided by the router.
Return value
int Number of routes.
Deprecated
in drupal:9.1.0 and is removed from drupal:10.0.0. No direct replacement is provided.
See also
https://www.drupal.org/node/3151009
File
-
core/
lib/ Drupal/ Core/ Routing/ RouteProviderLazyBuilder.php, line 156
Class
- RouteProviderLazyBuilder
- A Route Provider front-end for all Drupal-stored routes.
Namespace
Drupal\Core\RoutingCode
public function getRoutesCount() {
@trigger_error(__METHOD__ . '() is deprecated in drupal:9.1.0 and is removed from drupal:10.0.0. No direct replacement is provided. See https://www.drupal.org/node/3151009', E_USER_DEPRECATED);
return $this->getRouteProvider()
->getRoutesCount();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.