function FormWizardBase::getRouteName

Same name in other branches
  1. 8.x-3.x src/Wizard/FormWizardBase.php \Drupal\ctools\Wizard\FormWizardBase::getRouteName()

Overrides FormWizardInterface::getRouteName

3 calls to FormWizardBase::getRouteName()
FormWizardBase::actions in src/Wizard/FormWizardBase.php
Generates action elements for navigating between the operation steps.
FormWizardBase::previous in src/Wizard/FormWizardBase.php
Form submit handler to step backwards in the wizard.
FormWizardBase::submitForm in src/Wizard/FormWizardBase.php
Form submission handler.
2 methods override FormWizardBase::getRouteName()
EntityAddWizardTest::getRouteName in tests/modules/ctools_wizard_test/src/Wizard/EntityAddWizardTest.php
The name of the route to which forward or backwards steps redirect.
WizardTest::getRouteName in tests/modules/ctools_wizard_test/src/Wizard/WizardTest.php
The name of the route to which forward or backwards steps redirect.

File

src/Wizard/FormWizardBase.php, line 474

Class

FormWizardBase
The base class for all form wizard.

Namespace

Drupal\ctools\Wizard

Code

public function getRouteName() {
    return $this->routeMatch
        ->getRouteName();
}