function FormWizardInterface::getPreviousParameters

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

The Route parameters for a 'previous' 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::getPreviousParameters()
FormWizardBase::getPreviousParameters in src/Wizard/FormWizardBase.php
The Route parameters for a 'previous' step.

File

src/Wizard/FormWizardInterface.php, line 133

Class

FormWizardInterface
Form wizard interface.

Namespace

Drupal\ctools\Wizard

Code

public function getPreviousParameters($cached_values);