function FormWizardInterface::getNextParameters

Same name in other branches
  1. 4.0.x src/Wizard/FormWizardInterface.php \Drupal\ctools\Wizard\FormWizardInterface::getNextParameters()

The Route parameters for a 'next' step.

If your route requires more than machine_name and step keys, override and extend this method as needed.

Parameters

mixed $cached_values: The values returned by $this->getTempstore()->get($this->getMachineName());.

Return value

array An array keyed by: machine_name step

1 method overrides FormWizardInterface::getNextParameters()
FormWizardBase::getNextParameters in src/Wizard/FormWizardBase.php
The Route parameters for a 'next' step.

File

src/Wizard/FormWizardInterface.php, line 117

Class

FormWizardInterface
Form wizard interface.

Namespace

Drupal\ctools\Wizard

Code

public function getNextParameters($cached_values);