CountryListDeleteForm.php in Country, State and City Fields 8
Namespace
Drupal\country_state_city\FormFile
src/Form/CountryListDeleteForm.phpView source
<?php
namespace Drupal\country_state_city\Form;
use Drupal\Core\Entity\ContentEntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
/**
* Provides a form for deleting a countrylist entity.
*
* @ingroup country_state_city
*/
class CountryListDeleteForm extends ContentEntityConfirmFormBase {
/**
* {@inheritdoc}
*/
public function getQuestion() {
return $this
->t('Are you sure you want to delete entity %name?', [
'%name' => $this->entity
->label(),
]);
}
/**
* {@inheritdoc}
*
* If the delete command is canceled, return to the slider list.
*/
public function getCancelUrl() {
return new Url('entity.countrylist.collection');
}
/**
* {@inheritdoc}
*/
public function getConfirmText() {
return $this
->t('Delete');
}
/**
* {@inheritdoc}
*
* Delete the entity and log the event. logger() replaces the watchdog.
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$entity = $this
->getEntity();
$entity
->delete();
$this
->logger('countrylist')
->notice('@type: deleted %title.', [
'@type' => $this->entity
->bundle(),
'%title' => $this->entity
->label(),
]);
$form_state
->setRedirect('entity.countrylist.collection');
}
}
Classes
Name | Description |
---|---|
CountryListDeleteForm | Provides a form for deleting a countrylist entity. |