You are here

DomainDeleteForm.php in Domain Access 8

Namespace

Drupal\domain\Form

File

domain/src/Form/DomainDeleteForm.php
View source
<?php

namespace Drupal\domain\Form;

use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;

/**
 * Builds the form to delete a domain record.
 */
class DomainDeleteForm extends EntityConfirmFormBase {

  /**
   * {@inheritdoc}
   */
  public function getQuestion() {
    return $this
      ->t('Are you sure you want to delete %name?', [
      '%name' => $this->entity
        ->label(),
    ]);
  }

  /**
   * {@inheritdoc}
   */
  public function getCancelUrl() {
    return new Url('domain.admin');
  }

  /**
   * {@inheritdoc}
   */
  public function getConfirmText() {
    return $this
      ->t('Delete');
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $this->entity
      ->delete();
    \Drupal::messenger()
      ->addMessage($this
      ->t('Domain %label has been deleted.', [
      '%label' => $this->entity
        ->label(),
    ]));
    \Drupal::logger('domain')
      ->notice('Domain %label has been deleted.', [
      '%label' => $this->entity
        ->label(),
    ]);
    $form_state
      ->setRedirectUrl($this
      ->getCancelUrl());
  }

}

Classes

Namesort descending Description
DomainDeleteForm Builds the form to delete a domain record.