TermViewBuilder.php 640 B

123456789101112131415161718
  1. <?php
  2. namespace Drupal\taxonomy;
  3. @trigger_error(__NAMESPACE__ . '\TermViewBuilder is deprecated in Drupal 8.5.x and will be removed before Drupal 9.0.0. Use \Drupal\Core\Entity\EntityViewBuilder instead. See https://www.drupal.org/node/2924233.', E_USER_DEPRECATED);
  4. use Drupal\Core\Entity\EntityViewBuilder;
  5. /**
  6. * View builder handler for taxonomy terms.
  7. *
  8. * @deprecated in Drupal 8.5.x and will be removed before Drupal 9.0.0.
  9. * Use \Drupal\Core\Entity\EntityViewBuilder instead.
  10. *
  11. * @see \Drupal\Core\Entity\EntityViewBuilder
  12. * @see https://www.drupal.org/node/2924233
  13. */
  14. class TermViewBuilder extends EntityViewBuilder {}