AssetInjectorDeleteForm.php in Asset Injector 8.2
File
src/Form/AssetInjectorDeleteForm.php
View source
<?php
namespace Drupal\asset_injector\Form;
use Drupal;
use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
class AssetInjectorDeleteForm extends EntityConfirmFormBase {
public function getQuestion() {
return $this
->t('Are you sure you want to delete @type: %name?', [
'@type' => $this->entity
->getEntityType()
->getLabel(),
'%name' => $this->entity
->label(),
]);
}
public function getCancelUrl() {
$type = $this->entity
->getEntityType()
->get('id');
return new Url("entity.{$type}.collection");
}
public function getConfirmText() {
return $this
->t('Delete');
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$entity = $this->entity;
Drupal::logger('asset_injector')
->notice('%type asset %id deleted', [
'%type' => $entity
->get('entityTypeId'),
'%id' => $entity
->id(),
]);
$entity
->delete();
$this
->messenger()
->addMessage($this
->t('@type deleted @label.', [
'@type' => $entity
->getEntityType()
->getLabel(),
'@label' => $entity
->label(),
]));
$form_state
->setRedirectUrl($this
->getCancelUrl());
}
}