WizardFactoryInterface.php

Same filename and directory in other branches
  1. 4.0.x src/Wizard/WizardFactoryInterface.php

Namespace

Drupal\ctools\Wizard

File

src/Wizard/WizardFactoryInterface.php

View source
<?php

namespace Drupal\ctools\Wizard;


/**
 * Provide the WizardFactory.
 */
interface WizardFactoryInterface {
  
  /**
   * Get the wizard form.
   *
   * @param FormWizardInterface $wizard
   *   The form wizard.
   * @param array $parameters
   *   The array of default parameters specific to this wizard.
   * @param bool $ajax
   *   Whether or not this wizard is displayed via ajax modals.
   *
   * @return array
   *   Return array form.
   */
  public function getWizardForm(FormWizardInterface $wizard, array $parameters = [], $ajax = FALSE);
  
  /**
   * Create the wizard object.
   *
   * @param string $class
   *   A class name implementing FormWizardInterface.
   * @param array $parameters
   *   The array of parameters specific to this wizard.
   *
   * @return \Drupal\ctools\Wizard\FormWizardInterface
   *   Return the wizard interface.
   */
  public function createWizard($class, array $parameters);
  
  /**
   * Get the wizard form state.
   *
   * @param \Drupal\ctools\Wizard\FormWizardInterface $wizard
   *   The form wizard.
   * @param array $parameters
   *   The array of parameters specific to this wizard.
   * @param bool $ajax
   *   Use or not ajax.
   *
   * @return \Drupal\Core\Form\FormState
   *   Return the state form.
   */
  public function getFormState(FormWizardInterface $wizard, array $parameters, $ajax = FALSE);

}

Interfaces

Title Deprecated Summary
WizardFactoryInterface Provide the WizardFactory.