You are here

public function RouteBuilder::rebuildIfNeeded in Zircon Profile 8

Same name in this branch
  1. 8 core/lib/Drupal/Core/Routing/RouteBuilder.php \Drupal\Core\Routing\RouteBuilder::rebuildIfNeeded()
  2. 8 core/lib/Drupal/Core/ProxyClass/Routing/RouteBuilder.php \Drupal\Core\ProxyClass\Routing\RouteBuilder::rebuildIfNeeded()
Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Routing/RouteBuilder.php \Drupal\Core\Routing\RouteBuilder::rebuildIfNeeded()

Rebuilds the route info and dumps to dumper if necessary.

Return value

bool Returns TRUE if the rebuild occurs, FALSE otherwise.

Overrides RouteBuilderInterface::rebuildIfNeeded

1 call to RouteBuilder::rebuildIfNeeded()
RouteBuilder::destruct in core/lib/Drupal/Core/Routing/RouteBuilder.php
Performs destruct operations.

File

core/lib/Drupal/Core/Routing/RouteBuilder.php, line 208
Contains \Drupal\Core\Routing\RouteBuilder.

Class

RouteBuilder
Managing class for rebuilding the router table.

Namespace

Drupal\Core\Routing

Code

public function rebuildIfNeeded() {
  if ($this->rebuildNeeded) {
    return $this
      ->rebuild();
  }
  return FALSE;
}