You are here

public function PluginWizardInterface::getWizardOperations in Chaos Tool Suite (ctools) 8.3

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\Plugin

Code

public function getWizardOperations($cached_values);