function PluginWizardInterface::getWizardOperations
Same name in other branches
- 4.0.x src/Plugin/PluginWizardInterface.php \Drupal\ctools\Plugin\PluginWizardInterface::getWizardOperations()
Retrieve a list of FormInterface classes by their step key in the wizard.
Parameters
mixed $cached_values: The cached values used in the wizard. The plugin we're editing will always be assigned to the 'plugin' key.
Return value
array An associative array keyed on the step name with an array value with the following keys:
- title (string): Human-readable title of the step.
- form (string): Fully-qualified class name of the form for this step.
File
-
src/
Plugin/ PluginWizardInterface.php, line 23
Class
- PluginWizardInterface
- Provides an interface for configuring a plugin via wizard steps.
Namespace
Drupal\ctools\PluginCode
public function getWizardOperations($cached_values);