business_rules-8.x-1.0-beta1/src/Form/VariableDeleteForm.php
src/Form/VariableDeleteForm.php
<?php
namespace Drupal\business_rules\Form;
use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
/**
* Builds the form to delete Variable entities.
*/
class VariableDeleteForm extends EntityConfirmFormBase {
/**
* {@inheritdoc}
*/
public function getQuestion() {
return $this->t('Are you sure you want to delete %name? You will need to manually remove the variable references.', ['%name' => $this->entity->label()]);
}
/**
* {@inheritdoc}
*/
public function form(array $form, FormStateInterface $form_state) {
$form = parent::form($form, $form_state);
/** @var \Drupal\business_rules\Util\BusinessRulesUtil $util */
$util = \Drupal::service('business_rules.util');
$form['conditions_using_this_item'] = $util->getUsedByConditionsDetailsBox($this->entity);
$form['actions_using_this_item'] = $util->getUsedByActionsDetailsBox($this->entity);
return $form;
}
/**
* {@inheritdoc}
*/
public function getCancelUrl() {
return new Url('entity.business_rules_variable.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());
}
}
