support-2.0.x-dev/modules/support_ticket/src/Form/SupportTicketTypeDeleteConfirm.php
modules/support_ticket/src/Form/SupportTicketTypeDeleteConfirm.php
<?php
namespace Drupal\support_ticket\Form;
use Drupal\Core\Entity\EntityDeleteForm;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides a form for support ticket type deletion.
*/
class SupportTicketTypeDeleteConfirm extends EntityDeleteForm {
/**
* The query factory to create entity queries.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
* Holds entityTypeManager object for container creation.
*/
protected $entityTypeManager;
/**
* Constructs a new SupportTicketTypeDeleteConfirm object.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* The entity query object.
*/
public function __construct(EntityTypeManagerInterface $entityTypeManager) {
$this->entityTypeManager = $entityTypeManager;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static(
$container->get('entity_type.manager')
);
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$num_support_tickets = $this->entityTypeManager
->getStorage('support_ticket')
->getQuery()
->accessCheck(TRUE)
->condition('support_ticket_type', $this->entity->id())
->count()
->execute();
if ($num_support_tickets) {
$caption = '<p>' . $this->formatPlural($num_support_tickets, '%type is used by 1 ticket on your site. You can not remove this support ticket type until you have removed all of the %type tickets.', '%type is used by @count tickets on your site. You may not remove %type until you have removed all of the %type tickets.', ['%type' => $this->entity->label()]) . '</p>';
$form['#title'] = $this->getQuestion();
$form['description'] = ['#markup' => $caption];
return $form;
}
return parent::buildForm($form, $form_state);
}
}
