taxonomy_manager-2.0.3/src/Form/DeleteTermsForm.php
src/Form/DeleteTermsForm.php
<?php
namespace Drupal\taxonomy_manager\Form;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\taxonomy\TermStorage;
use Drupal\taxonomy\VocabularyInterface;
use Drupal\taxonomy_manager\TaxonomyManagerHelper;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Form for deleting given terms.
*/
class DeleteTermsForm extends FormBase {
/**
* The current request.
*
* @var \Drupal\taxonomy\TermStorageInterface
*/
protected $termStorage;
/**
* The taxonomy messenger helper.
*
* @var \Drupal\taxonomy_manager\TaxonomyManagerHelper
*/
protected $taxonomyManagerHelper;
/**
* DeleteTermsForm constructor.
*
* @param \Drupal\taxonomy\TermStorage $term_storage
* Object with convenient methods to manage terms.
* @param \Drupal\taxonomy_manager\TaxonomyManagerHelper $taxonomy_manager_helper
* The taxonomy messenger helper.
*/
public function __construct(TermStorage $term_storage, TaxonomyManagerHelper $taxonomy_manager_helper) {
$this->termStorage = $term_storage;
$this->taxonomyManagerHelper = $taxonomy_manager_helper;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static(
$container->get('entity_type.manager')->getStorage('taxonomy_term'),
$container->get('taxonomy_manager.helper')
);
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state, ?VocabularyInterface $taxonomy_vocabulary = NULL, $selected_terms = []) {
if (empty($selected_terms)) {
$form['info'] = [
'#markup' => $this->t('Please select the terms you want to delete.'),
];
return $form;
}
// Cache form state so that we keep the parents in the modal dialog.
$form_state->setCached(TRUE);
$form['voc'] = ['#type' => 'value', '#value' => $taxonomy_vocabulary];
$form['selected_terms']['#tree'] = TRUE;
$items = [];
foreach ($selected_terms as $t) {
$term = $this->termStorage->load($t);
$items[] = $term->getName();
$form['selected_terms'][$t] = ['#type' => 'value', '#value' => $t];
}
$form['terms'] = [
'#theme' => 'item_list',
'#items' => $items,
'#title' => $this->t('Selected terms for deletion:'),
];
$form['delete_orphans'] = [
'#type' => 'checkbox',
'#title' => $this->t('Delete children of selected terms, if there are any'),
];
$form['delete'] = [
'#type' => 'submit',
'#value' => $this->t('Delete'),
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$taxonomy_vocabulary = $form_state->getValue('voc');
$selected_terms = $form_state->getValue('selected_terms');
$delete_orphans = $form_state->getValue('delete_orphans');
$info = $this->taxonomyManagerHelper->deleteTerms($selected_terms, $delete_orphans);
$this->messenger()->addMessage($this->t("Deleted terms: %deleted_term_names", ['%deleted_term_names' => implode(', ', $info['deleted_terms'])]));
if (count($info['remaining_child_terms'])) {
$this->messenger()->addMessage($this->t("Remaining child terms with different parents: %remaining_child_term_names", ['%remaining_child_term_names' => implode(', ', $info['remaining_child_terms'])]));
}
$form_state->setRedirect('taxonomy_manager.admin_vocabulary', ['taxonomy_vocabulary' => $taxonomy_vocabulary->id()]);
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'taxonomy_manager_delete_form';
}
}
