You are here

protected function FormBase::getRouteMatch in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Form/FormBase.php \Drupal\Core\Form\FormBase::getRouteMatch()

Gets the route match.

Return value

\Drupal\Core\Routing\RouteMatchInterface

File

core/lib/Drupal/Core/Form/FormBase.php, line 153
Contains \Drupal\Core\Form\FormBase.

Class

FormBase
Provides a base class for forms.

Namespace

Drupal\Core\Form

Code

protected function getRouteMatch() {
  if (!$this->routeMatch) {
    $this->routeMatch = \Drupal::routeMatch();
  }
  return $this->routeMatch;
}