Mercurial > hg > isophonics-drupal-site
annotate core/modules/taxonomy/src/TermViewBuilder.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 1fec387a4317 |
children |
rev | line source |
---|---|
Chris@0 | 1 <?php |
Chris@0 | 2 |
Chris@0 | 3 namespace Drupal\taxonomy; |
Chris@0 | 4 |
Chris@14 | 5 @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); |
Chris@14 | 6 |
Chris@0 | 7 use Drupal\Core\Entity\EntityViewBuilder; |
Chris@0 | 8 |
Chris@0 | 9 /** |
Chris@0 | 10 * View builder handler for taxonomy terms. |
Chris@14 | 11 * |
Chris@14 | 12 * @deprecated in Drupal 8.5.x and will be removed before Drupal 9.0.0. |
Chris@14 | 13 * Use \Drupal\Core\Entity\EntityViewBuilder instead. |
Chris@14 | 14 * |
Chris@14 | 15 * @see \Drupal\Core\Entity\EntityViewBuilder |
Chris@14 | 16 * @see https://www.drupal.org/node/2924233 |
Chris@0 | 17 */ |
Chris@14 | 18 class TermViewBuilder extends EntityViewBuilder {} |