This repository has been archived on 2025-09-29. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/web/modules/contrib/webform/src/Element/WebformWizardPage.php
2017-03-16 15:29:07 +00:00

17 lines
367 B
PHP

<?php
namespace Drupal\webform\Element;
use Drupal\Core\Render\Element\Details;
/**
* Provides a webform element for a webform 'wizard' page.
*
* A webform 'wizard' page is simply a detail widget that is transformed
* into a page via the WebformSubmissionForm handler.
*
* @FormElement("webform_wizard_page")
*/
class WebformWizardPage extends Details {
}