ApiKeyDeleteForm.php in Services API Key Authentication 8
Contains \Drupal\api_key_auth\Form\ApiKeyDeleteForm.
Namespace
Drupal\services_api_key_auth\FormFile
src/Form/ApiKeyDeleteForm.phpView source
<?php
/**
* @file
* Contains \Drupal\api_key_auth\Form\ApiKeyDeleteForm.
*/
namespace Drupal\services_api_key_auth\Form;
use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
/**
* Builds the form to delete Api key entities.
*/
class ApiKeyDeleteForm extends EntityConfirmFormBase {
/**
* {@inheritdoc}
*/
public function getQuestion() {
return $this
->t('Are you sure you want to delete %name?', array(
'%name' => $this->entity
->label(),
));
}
/**
* {@inheritdoc}
*/
public function getCancelUrl() {
return new Url('entity.api_key.collection');
}
/**
* {@inheritdoc}
*/
public function getConfirmText() {
return $this
->t('Delete');
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->entity
->delete();
drupal_set_message($this
->t('content @type: deleted @label.', [
'@type' => $this->entity
->bundle(),
'@label' => $this->entity
->label(),
]));
$form_state
->setRedirectUrl($this
->getCancelUrl());
}
}
Classes
Name | Description |
---|---|
ApiKeyDeleteForm | Builds the form to delete Api key entities. |