interface WebformDevelSchemaInterface in Webform 6.x
Same name and namespace in other branches
- 8.5 modules/webform_devel/src/WebformDevelSchemaInterface.php \Drupal\webform_devel\WebformDevelSchemaInterface
Provides an interface defining a webform devel schema.
Hierarchy
- interface \Drupal\webform_devel\WebformDevelSchemaInterface
Expanded class hierarchy of WebformDevelSchemaInterface
All classes that implement WebformDevelSchemaInterface
File
- modules/
webform_devel/ src/ WebformDevelSchemaInterface.php, line 10
Namespace
Drupal\webform_develView source
interface WebformDevelSchemaInterface {
/**
* Get webform schema columns.
*
* @return array
* Webform schema columns.
*/
public function getColumns();
/**
* Get webform elements schema.
*
* @param \Drupal\webform\WebformInterface $webform
* A webform.
*
* @return array
* An array containing the schema for the webform's elements.
*/
public function getElements(WebformInterface $webform);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
WebformDevelSchemaInterface:: |
public | function | Get webform schema columns. | 1 |
WebformDevelSchemaInterface:: |
public | function | Get webform elements schema. | 1 |