CropTypeDeleteForm.php in Crop API 8
File
src/Form/CropTypeDeleteForm.php
View source
<?php
namespace Drupal\crop\Form;
use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Entity\Query\QueryFactory;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\StringTranslation\TranslationInterface;
use Drupal\Core\Url;
use Symfony\Component\DependencyInjection\ContainerInterface;
class CropTypeDeleteForm extends EntityConfirmFormBase {
protected $queryFactory;
protected $translation;
public function __construct(QueryFactory $query_factory, TranslationInterface $string_translation) {
$this->queryFactory = $query_factory;
$this->translation = $string_translation;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('entity.query'), $container
->get('string_translation'));
}
public function getQuestion() {
return t('Are you sure you want to delete the crop type %type?', [
'%type' => $this->entity
->label(),
]);
}
public function getCancelUrl() {
return new Url('crop.overview_types');
}
public function getConfirmText() {
return t('Delete');
}
public function buildForm(array $form, FormStateInterface $form_state) {
$count = $this->queryFactory
->get('crop')
->condition('type', $this->entity
->id())
->count()
->execute();
if ($count) {
$form['#title'] = $this
->getQuestion();
$form['description'] = [
'#prefix' => '<p>',
'#markup' => $this->translation
->formatPlural($count, '%type is used by 1 piece of content on your site. You can not remove this content type until you have removed all of the %type content.', '%type is used by @count pieces of content on your site. You may not remove %type until you have removed all of the %type content.', [
'%type' => $this->entity
->label(),
]),
'#suffix' => '</p>',
];
return $form;
}
return parent::buildForm($form, $form_state);
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->entity
->delete();
$t_args = [
'%name' => $this->entity
->label(),
];
drupal_set_message($this
->t('The crop type %name has been deleted.', $t_args));
$this
->logger('crop')
->notice('Deleted crop type %name.', $t_args);
$form_state
->setRedirectUrl($this
->getCancelUrl());
}
}