function FormWizardBase::getRouteName

Same name in other branches
  1. 4.0.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.
4 methods override FormWizardBase::getRouteName()
EntityAddWizard::getRouteName in tests/modules/ctools_wizard_test/src/Wizard/EntityAddWizard.php
The name of the route to which forward or backwards steps redirect.
EntityAddWizardTest::getRouteName in tests/modules/ctools_wizard_test/src/Wizard/EntityAddWizardTest.php
The name of the route to which forward or backwards steps redirect.
EntityWizard::getRouteName in tests/modules/ctools_wizard_test/src/Wizard/EntityWizard.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 490

Class

FormWizardBase
The base class for all form wizard.

Namespace

Drupal\ctools\Wizard

Code

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