o365-2.0.3/src/Form/O365ConnectorDeleteForm.php
src/Form/O365ConnectorDeleteForm.php
<?php
namespace Drupal\o365\Form;
use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Url;
/**
* Builds the form to delete Microsoft 365 connector entities.
*/
class O365ConnectorDeleteForm extends EntityConfirmFormBase {
/**
* {@inheritdoc}
*/
public function getQuestion(): TranslatableMarkup {
return $this->t('Are you sure you want to delete @name?', ['@name' => $this->entity->label()]);
}
/**
* {@inheritdoc}
*/
public function getCancelUrl(): Url {
return new Url('entity.o365_connector.collection');
}
/**
* {@inheritdoc}
*/
public function getConfirmText(): TranslatableMarkup {
return $this->t('Delete');
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state): void {
$this->entity->delete();
$this->messenger()
->addMessage($this->t('Entity @label has been deleted.', ['@label' => $this->entity->label()]));
$form_state->setRedirectUrl($this->getCancelUrl());
}
}
