
| Current Path : /var/www/html/12park/web/modules/contrib/webform/src/Form/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/12park/web/modules/contrib/webform/src/Form/WebformDeleteFormInterface.php |
<?php
namespace Drupal\webform\Form;
use Drupal\Core\Form\ConfirmFormInterface;
/**
* Defines an interface for webform delete forms.
*/
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();
}