annotate core/modules/taxonomy/src/TermViewBuilder.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author |
Chris Cannam |
date |
Thu, 28 Feb 2019 13:21:36 +0000 |
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 {}
|