interface WebformDeleteFormInterface in Webform 8.5
Same name and namespace in other branches
- 6.x src/Form/WebformDeleteFormInterface.php \Drupal\webform\Form\WebformDeleteFormInterface
Defines an interface for webform delete forms.
Hierarchy
- interface \Drupal\Core\Form\FormInterface
- interface \Drupal\Core\Form\ConfirmFormInterface
- interface \Drupal\webform\Form\WebformDeleteFormInterface
- interface \Drupal\Core\Form\ConfirmFormInterface
Expanded class hierarchy of WebformDeleteFormInterface
All classes that implement WebformDeleteFormInterface
File
- src/
Form/ WebformDeleteFormInterface.php, line 10
Namespace
Drupal\webform\FormView source
interface WebformDeleteFormInterface extends ConfirmFormInterface {
/**
* Returns warning message to display.
*
* @return array
* A renderable array containing a warning message.
*/
public function getWarning();
/**
* {@inheritdoc}
*/
public function getDescription();
/**
* Returns details to display.
*
* @return array
* A renderable array containing details.
*/
public function getDetails();
/**
* Returns confirm input to display.
*
* @return array
* A renderable array containing confirm input.
*/
public function getConfirmInput();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfirmFormInterface:: |
public | function | Returns a caption for the link which cancels the action. | 3 |
ConfirmFormInterface:: |
public | function | Returns the route to go to if the user cancels the action. | 32 |
ConfirmFormInterface:: |
public | function | Returns a caption for the button that confirms the action. | 3 |
ConfirmFormInterface:: |
public | function | Returns the internal name used to refer to the confirmation item. | 3 |
ConfirmFormInterface:: |
public | function | Returns the question to ask the user. | 33 |
FormInterface:: |
public | function | Form constructor. | 179 |
FormInterface:: |
public | function | Returns a unique string identifying the form. | 236 |
FormInterface:: |
public | function | Form submission handler. | 192 |
FormInterface:: |
public | function | Form validation handler. | 30 |
WebformDeleteFormInterface:: |
public | function | Returns confirm input to display. | 3 |
WebformDeleteFormInterface:: |
public | function |
Returns additional text to display as a description. Overrides ConfirmFormInterface:: |
3 |
WebformDeleteFormInterface:: |
public | function | Returns details to display. | 3 |
WebformDeleteFormInterface:: |
public | function | Returns warning message to display. | 3 |