You are here

public function FormWizardBase::getRouteName in Chaos Tool Suite (ctools) 8.3

The name of the route to which forward or backwards steps redirect.

Return value

string

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 467

Class

FormWizardBase
The base class for all form wizard.

Namespace

Drupal\ctools\Wizard

Code

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