CorrespondingReferenceDeleteForm.php in Corresponding Entity References 8.4
File
src/Form/CorrespondingReferenceDeleteForm.php
View source
<?php
namespace Drupal\cer\Form;
use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
class CorrespondingReferenceDeleteForm extends EntityConfirmFormBase {
public function getQuestion() {
return $this
->t('Are you sure you want to delete corresponding reference %label?', [
'%label' => $this->entity
->label(),
]);
}
public function getCancelUrl() {
return new Url('entity.corresponding_reference.collection');
}
public function getConfirmText() {
return $this
->t('Delete');
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->entity
->delete();
$this
->messenger()
->addStatus($this
->t('Corresponding reference %label has been deleted.', [
'%label' => $this->entity
->label(),
]));
$form_state
->setRedirectUrl($this
->getCancelUrl());
}
}