public RouteBuilder::rebuildIfNeeded()
Rebuilds the route information if necessary, and dumps it.
Return value
bool Returns TRUE if the rebuild occurs, FALSE otherwise.
Overrides RouteBuilderInterface::rebuildIfNeeded
File
- core/lib/Drupal/Core/Routing/RouteBuilder.php, line 203
Class
- RouteBuilder
- Managing class for rebuilding the router table.
Namespace
Drupal\Core\Routing
Code
1 2 3 4 5 6 | public function rebuildIfNeeded() { if ( $this ->rebuildNeeded) { return $this ->rebuild(); } return FALSE; } |
Please login to continue.