You are here

Term.php in Drupal 9

File

core/modules/taxonomy/src/Plugin/views/argument_validator/Term.php
View source
<?php

namespace Drupal\taxonomy\Plugin\views\argument_validator;

@trigger_error('The ' . __NAMESPACE__ . '\\Term is deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. Use \\Drupal\\views\\Plugin\\views\\argument_validator\\Entity instead. See https://www.drupal.org/node/3221870', E_USER_DEPRECATED);
use Drupal\views\Plugin\views\argument_validator\Entity;

/**
 * Adds legacy vocabulary handling to standard Entity Argument validation.
 *
 * @deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. Use
 *   \Drupal\views\Plugin\views\argument_validator\Entity instead.
 *
 * @see https://www.drupal.org/node/3221870
 */
class Term extends Entity {

}

Classes

Namesort descending Description
Term Deprecated Adds legacy vocabulary handling to standard Entity Argument validation.