You are here

WebformElementWizardPageInterface.php in Webform 6.x

Same filename and directory in other branches
  1. 8.5 src/Plugin/WebformElementWizardPageInterface.php

File

src/Plugin/WebformElementWizardPageInterface.php
View source
<?php

namespace Drupal\webform\Plugin;


/**
 * Provides an 'wizard_page' interface used to detect wizard page elements.
 */
interface WebformElementWizardPageInterface extends WebformElementInterface {

  /**
   * Show webform wizard page.
   *
   * @param array $element
   *   A webform wizard page element and its child elements.
   */
  public function showPage(array &$element);

  /**
   * Hide webform wizard page.
   *
   * @param array $element
   *   A webform wizard page element and its child elements.
   */
  public function hidePage(array &$element);

}

Interfaces

Namesort descending Description
WebformElementWizardPageInterface Provides an 'wizard_page' interface used to detect wizard page elements.