WebformDevelSchemaInterface.php in Webform 6.x
Same filename and directory in other branches
Namespace
Drupal\webform_develFile
modules/webform_devel/src/WebformDevelSchemaInterface.phpView source
<?php
namespace Drupal\webform_devel;
use Drupal\webform\WebformInterface;
/**
* Provides an interface defining a webform devel schema.
*/
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);
}
Interfaces
Name | Description |
---|---|
WebformDevelSchemaInterface | Provides an interface defining a webform devel schema. |