YamlFormEntityDeleteForm.php in YAML Form 8
File
src/YamlFormEntityDeleteForm.php
View source
<?php
namespace Drupal\yamlform;
use Drupal\Core\Entity\EntityDeleteForm;
use Drupal\Core\Form\FormStateInterface;
class YamlFormEntityDeleteForm extends EntityDeleteForm {
public function buildForm(array $form, FormStateInterface $form_state) {
$form = parent::buildForm($form, $form_state);
$form['confirm'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Yes, I want to the delete this form.'),
'#required' => TRUE,
'#weight' => 10,
];
return $form;
}
}