RouteBuilder::rebuildIfNeeded

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

public function rebuildIfNeeded() {
  if ($this->rebuildNeeded) {
    return $this->rebuild();
  }
  return FALSE;
}
doc_Drupal
2016-10-29 09:39:01
Comments
Leave a Comment

Please login to continue.