RegistrationTypeDeleteForm.php in RNG - Events and Registrations 3.x
File
src/Form/RegistrationTypeDeleteForm.php
View source
<?php
namespace Drupal\rng\Form;
use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Url;
use Drupal\Core\Form\FormStateInterface;
class RegistrationTypeDeleteForm extends EntityConfirmFormBase {
public function getQuestion() {
return $this
->t('Are you sure you want to delete registration type %label?', [
'%label' => $this->entity
->label(),
]);
}
public function getConfirmText() {
return $this
->t('Delete');
}
public function getCancelUrl() {
return new Url('rng.registration_type.overview');
}
public function buildForm(array $form, FormStateInterface $form_state) {
$count = $this->entityTypeManager
->getStorage('registration')
->getQuery()
->condition('type', $this->entity
->id())
->count()
->execute();
if ($count == 0) {
return parent::buildForm($form, $form_state);
}
$this
->messenger()
->addMessage($this
->t('Cannot delete registration type.'), 'warning');
$form['#title'] = $this
->getQuestion();
$form['description'] = [
'#markup' => $this
->formatPlural($count, 'Unable to delete registration type. It is used by @count registration.', 'Unable to delete registration type. It is used by @count registrations.'),
];
return $form;
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->entity
->delete();
$this
->messenger()
->addMessage($this
->t('Registration type %label was deleted.', [
'%label' => $this->entity
->label(),
]));
$form_state
->setRedirectUrl($this
->getCancelUrl());
}
}